diff options
Diffstat (limited to 'src/player.h')
-rw-r--r-- | src/player.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/player.h b/src/player.h index 66cd0f5cf..674491546 100644 --- a/src/player.h +++ b/src/player.h @@ -92,10 +92,11 @@ struct PlayerSettings bool always_fly_fast = false; bool aux1_descends = false; bool noclip = false; + bool autojump = false; - const std::string setting_names[6] = { + const std::string setting_names[7] = { "free_move", "fast_move", "continuous_forward", "always_fly_fast", - "aux1_descends", "noclip" + "aux1_descends", "noclip", "autojump" }; void readGlobalSettings(); }; |