diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-03 11:23:54 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-03 11:23:54 +0100 |
commit | 75cf0b8e72aff7072c25ab015ce5c9c64eb3ecc5 (patch) | |
tree | dd459130f169a924db0637146d31ed20aaa10d74 /src/crepe/ScriptSystem.cpp | |
parent | ed8534e2d150428bcbc4a6df8940323ae8db2925 (diff) | |
parent | 6aa8fdd04728b6a499f526de727514ae3d0490b4 (diff) |
Merge branch 'master' of https://github.com/lonkaars/crepe into wouter/events-poc
Diffstat (limited to 'src/crepe/ScriptSystem.cpp')
-rw-r--r-- | src/crepe/ScriptSystem.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/crepe/ScriptSystem.cpp b/src/crepe/ScriptSystem.cpp index d00d474..171b490 100644 --- a/src/crepe/ScriptSystem.cpp +++ b/src/crepe/ScriptSystem.cpp @@ -37,6 +37,7 @@ forward_list<Script *> ScriptSystem::get_scripts() { for (auto behavior_script_ref : behavior_scripts) { BehaviorScript & behavior_script = behavior_script_ref.get(); + if (!behavior_script.active) continue; Script * script = behavior_script.script.get(); if (script == nullptr) continue; scripts.push_front(script); |