From 9e280b60f7df1980d69609c0c2de1e77e544c09d Mon Sep 17 00:00:00 2001 From: Nitwel Date: Tue, 12 Mar 2024 12:41:46 +0100 Subject: [PATCH] make sure entities get update on rename --- content/system/house/house.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/content/system/house/house.gd b/content/system/house/house.gd index 8e3ae90..d29ea00 100644 --- a/content/system/house/house.gd +++ b/content/system/house/house.gd @@ -137,6 +137,7 @@ func rename_room(old_room: String, new_name: String): if store_room != null: store_room.name = new_name + save_all_entities() Store.house.save_local() func get_level(level: int):