From 3cb64459f35382adc13f7ccfc98352a182bfc966 Mon Sep 17 00:00:00 2001 From: fgenesis Date: Mon, 8 Jul 2024 01:53:53 +0200 Subject: [PATCH] fix OT_INVISIBLE grid not reconstructing properly on map load --- Aquaria/Game.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Aquaria/Game.cpp b/Aquaria/Game.cpp index caee30b..6c2fb76 100644 --- a/Aquaria/Game.cpp +++ b/Aquaria/Game.cpp @@ -1795,10 +1795,10 @@ next_SE: if(toSpawn.size()) spawnEntities(&toSpawn[0], toSpawn.size()); - this->reconstructGrid(true); - findMaxCameraValues(); + this->reconstructGrid(true); + return true; }