From 25054cca2a8d06d1ceb60451db8dc383bc629eb8 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Thu, 21 Nov 2024 20:28:07 +0100 Subject: store `game_object_id` by value instead of reference in Script --- src/crepe/api/Script.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/crepe/api/Script.cpp') diff --git a/src/crepe/api/Script.cpp b/src/crepe/api/Script.cpp index 8bb3ef6..fcbe4c7 100644 --- a/src/crepe/api/Script.cpp +++ b/src/crepe/api/Script.cpp @@ -11,6 +11,5 @@ Script::~Script() { template <> void Script::subscribe(const EventHandler & callback) { - const game_object_id_t & game_object_id = this->game_object_id; - this->subscribe_internal(callback, game_object_id); + this->subscribe_internal(callback, this->game_object_id); } -- cgit v1.2.3