aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/ScriptSystem.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-16 18:24:16 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-16 18:24:16 +0200
commit9fd3bdca9de2d37b63e1646b22d32b0b182f01ee (patch)
tree363af52a0db9a75f5cd2aebd6108d5b880865ff8 /src/crepe/ScriptSystem.cpp
parent81a9b43e12a32340262fa0e74005c7e6bd25eba7 (diff)
use unique_ptr instead of manual memory management in behaviorscript
Diffstat (limited to 'src/crepe/ScriptSystem.cpp')
-rw-r--r--src/crepe/ScriptSystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/ScriptSystem.cpp b/src/crepe/ScriptSystem.cpp
index 0537c16..1a7bff4 100644
--- a/src/crepe/ScriptSystem.cpp
+++ b/src/crepe/ScriptSystem.cpp
@@ -40,7 +40,7 @@ forward_list<Script *> ScriptSystem::get_scripts() {
for (auto behavior_script_ref : behavior_scripts) {
BehaviorScript & behavior_script = behavior_script_ref.get();
- Script * script = behavior_script.script;
+ Script * script = behavior_script.script.get();
if (script == nullptr) continue;
scripts.push_front(script);
}