aboutsummaryrefslogtreecommitdiff
path: root/builtin/client/cheats/render.lua
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2020-12-11 17:11:22 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2020-12-11 17:11:22 +0100
commit0c9e7466e84b514cbe65ee9b6617af7828c37522 (patch)
tree0403a6e80354f23cee38667c9cf3635d2091fb51 /builtin/client/cheats/render.lua
parenta1e61e561fdc6f37e1b7547203796a9b4ac4f8e1 (diff)
downloaddragonfireclient-0c9e7466e84b514cbe65ee9b6617af7828c37522.tar.xz
New Cheat Philosophy
Diffstat (limited to 'builtin/client/cheats/render.lua')
-rw-r--r--builtin/client/cheats/render.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/builtin/client/cheats/render.lua b/builtin/client/cheats/render.lua
deleted file mode 100644
index dc3f71247..000000000
--- a/builtin/client/cheats/render.lua
+++ /dev/null
@@ -1,14 +0,0 @@
-core.register_list_command("xray", "Configure X-Ray", "xray_nodes")
-core.register_list_command("search", "Configure NodeESP", "node_esp_nodes")
-
-core.register_on_spawn_particle(function(particle)
- if core.settings:get_bool("noweather") and particle.texture:sub(1, 12) == "weather_pack" then
- return true
- end
-end)
-
-core.register_on_play_sound(function(sound)
- if core.settings:get_bool("noweather") and sound.name == "weather_rain" then
- return true
- end
-end)