diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-04 17:43:37 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-04 17:43:37 +0200 |
commit | 044a12666e6140f15e073f528a9168348554dc52 (patch) | |
tree | 79c3b96fb185c1499346f5109e49884a129702c7 /builtin/client/cheats.lua | |
parent | b9f8f0a232d9d00a323084e0e4807b3e3469720d (diff) | |
download | dragonfireclient-044a12666e6140f15e073f528a9168348554dc52.tar.xz |
Added Tracers, NoSlow and NoForceRotate; GUI Colors changed
Diffstat (limited to 'builtin/client/cheats.lua')
-rw-r--r-- | builtin/client/cheats.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/builtin/client/cheats.lua b/builtin/client/cheats.lua index a6aa13dc7..43d79d498 100644 --- a/builtin/client/cheats.lua +++ b/builtin/client/cheats.lua @@ -11,6 +11,8 @@ core.cheats = { ["PitchMove"] = "pitch_move", ["AutoJump"] = "autojump", ["Jesus"] = "jesus", + ["NoSlow"] = "no_slow", + }, ["Render"] = { ["Xray"] = "xray", @@ -19,6 +21,7 @@ core.cheats = { ["NoHurtCam"] = "no_hurt_cam", ["BrightNight"] = "no_night", ["Coords"] = "coords", + ["Tracers"] = "enable_tracers", }, ["World"] = { ["FastDig"] = "fastdig", @@ -36,6 +39,7 @@ core.cheats = { }, ["Player"] = { ["NoFallDamage"] = "prevent_natural_damage", + ["NoForceRotate"] = "no_force_rotate", }, } |