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-25 22:15:04 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2021-02-25 22:15:04 -0500
commit88530b61ff77b4e9af38dcd5673d311738f54578 (patch)
treef8c96f4b2244591c8c2f8f9fbd58031892ab6d99 /src/script_system.cpp
parentc6c0c1a5a553c66796418b07077465c0c7a89069 (diff)
downloadtanetane-88530b61ff77b4e9af38dcd5673d311738f54578.tar.gz
tanetane-88530b61ff77b4e9af38dcd5673d311738f54578.tar.bz2
tanetane-88530b61ff77b4e9af38dcd5673d311738f54578.zip
Lucas wades into hot spring alone when Ionia is there
Diffstat (limited to 'src/script_system.cpp')
-rw-r--r--src/script_system.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/script_system.cpp b/src/script_system.cpp index e890dfc..0d82436 100644 --- a/src/script_system.cpp +++ b/src/script_system.cpp
@@ -59,6 +59,9 @@ ScriptSystem::ScriptSystem(Game& game) : game_(game) {
59 "character", 59 "character",
60 "addSpriteToParty", &CharacterSystem::addSpriteToParty, 60 "addSpriteToParty", &CharacterSystem::addSpriteToParty,
61 "transplantParty", &CharacterSystem::transplantParty, 61 "transplantParty", &CharacterSystem::transplantParty,
62 "breakUpParty", &CharacterSystem::breakUpParty,
63 "moveInDirection", &CharacterSystem::moveInDirection,
64 "stopDirecting", &CharacterSystem::stopDirecting,
62 "startRunning", &CharacterSystem::startRunning, 65 "startRunning", &CharacterSystem::startRunning,
63 "halt", &CharacterSystem::halt); 66 "halt", &CharacterSystem::halt);
64 67