summary refs log tree commit diff stats
path: root/src/script_system.cpp
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2021-02-26 16:55:44 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2021-02-26 16:55:44 -0500
commitaf49b5366d35173702a2b3bd70ac4254b8855538 (patch)
tree66755c194016d7342a0540746c4faa597bc6bb5f /src/script_system.cpp
parentd5e3bc615b300eb985d59b91ebd1f2f1a4d4e107 (diff)
downloadtanetane-af49b5366d35173702a2b3bd70ac4254b8855538.tar.gz
tanetane-af49b5366d35173702a2b3bd70ac4254b8855538.tar.bz2
tanetane-af49b5366d35173702a2b3bd70ac4254b8855538.zip
Disabled crouching/running in the underwater map
Diffstat (limited to 'src/script_system.cpp')
-rw-r--r--src/script_system.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/script_system.cpp b/src/script_system.cpp index 31b8bee..92e6afe 100644 --- a/src/script_system.cpp +++ b/src/script_system.cpp
@@ -39,7 +39,8 @@ ScriptSystem::ScriptSystem(Game& game) : game_(game) {
39 }, 39 },
40 "persistent", &Sprite::persistent, 40 "persistent", &Sprite::persistent,
41 "paused", &Sprite::paused, 41 "paused", &Sprite::paused,
42 "clipping", &Sprite::clipping); 42 "clipping", &Sprite::clipping,
43 "cantCrouch", &Sprite::cantCrouch);
43 44
44 engine_.new_usertype<MessageSystem>( 45 engine_.new_usertype<MessageSystem>(
45 "message", 46 "message",