aboutsummaryrefslogtreecommitdiff
path: root/builtin/client/cheats/render.lua
diff options
context:
space:
mode:
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)