From 9d09b89b5ca0ac5b908c16093537c918596bfa7c Mon Sep 17 00:00:00 2001 From: CekisSWG Date: Wed, 4 Mar 2020 18:05:51 -0500 Subject: [PATCH] Fixed issue with Restuss Criers if starting Restuss in stage 3. --- .../game/script/theme_park/restuss_event/stage_two_crier.java | 1 + 1 file changed, 1 insertion(+) diff --git a/sku.0/sys.server/compiled/game/script/theme_park/restuss_event/stage_two_crier.java b/sku.0/sys.server/compiled/game/script/theme_park/restuss_event/stage_two_crier.java index faa0acdf2..cf3c5aca2 100755 --- a/sku.0/sys.server/compiled/game/script/theme_park/restuss_event/stage_two_crier.java +++ b/sku.0/sys.server/compiled/game/script/theme_park/restuss_event/stage_two_crier.java @@ -90,6 +90,7 @@ public class stage_two_crier extends script.base_script public int warningLoop(obj_id self, dictionary params) throws InterruptedException { obj_id herald = utils.getObjIdScriptVar(self, HERALD_ID); + if(!isValidId(herald) || !isValidId(self)) return SCRIPT_CONTINUE; chat.chat(herald, WARNING); messageTo(self, "warningLoop", null, 30.0f, false); return SCRIPT_CONTINUE;