From 3fb23cccc0ff33f3e6b431aa10a3109573c28017 Mon Sep 17 00:00:00 2001 From: Cekis Date: Tue, 5 Apr 2016 18:04:58 +0100 Subject: [PATCH] Fixed potential double spawn issues. --- .../compiled/game/script/city/interior_2_convo.java | 4 ---- .../compiled/game/script/city/interior_3_convo.java | 4 ---- .../compiled/game/script/city/interior_4_convo.java | 4 ---- .../game/script/event/aprilfools/starport_april_fools.java | 4 ---- 4 files changed, 16 deletions(-) diff --git a/sku.0/sys.server/compiled/game/script/city/interior_2_convo.java b/sku.0/sys.server/compiled/game/script/city/interior_2_convo.java index 717226819..c18aa1c1d 100755 --- a/sku.0/sys.server/compiled/game/script/city/interior_2_convo.java +++ b/sku.0/sys.server/compiled/game/script/city/interior_2_convo.java @@ -16,10 +16,6 @@ public class interior_2_convo extends script.city.interior_convo_base messageTo(self, "handleChatting", null, 10, false); return SCRIPT_CONTINUE; } - public int OnAttach(obj_id self) throws InterruptedException - { - return OnInitialize(self); - } public int handleChatting(obj_id self, dictionary params) throws InterruptedException { obj_id guy1 = getObjIdObjVar(self, "guy1"); diff --git a/sku.0/sys.server/compiled/game/script/city/interior_3_convo.java b/sku.0/sys.server/compiled/game/script/city/interior_3_convo.java index c4928fb33..ed8a183d3 100755 --- a/sku.0/sys.server/compiled/game/script/city/interior_3_convo.java +++ b/sku.0/sys.server/compiled/game/script/city/interior_3_convo.java @@ -17,10 +17,6 @@ public class interior_3_convo extends script.city.interior_convo_base messageTo(self, "handleChatting", null, 10, false); return SCRIPT_CONTINUE; } - public int OnAttach(obj_id self) throws InterruptedException - { - return OnInitialize(self); - } public int handleChatting(obj_id self, dictionary params) throws InterruptedException { obj_id guy1 = getObjIdObjVar(self, "guy1"); diff --git a/sku.0/sys.server/compiled/game/script/city/interior_4_convo.java b/sku.0/sys.server/compiled/game/script/city/interior_4_convo.java index 5b2357455..f74205590 100755 --- a/sku.0/sys.server/compiled/game/script/city/interior_4_convo.java +++ b/sku.0/sys.server/compiled/game/script/city/interior_4_convo.java @@ -18,10 +18,6 @@ public class interior_4_convo extends script.city.interior_convo_base messageTo(self, "handleChatting", null, 10, false); return SCRIPT_CONTINUE; } - public int OnAttach(obj_id self) throws InterruptedException - { - return OnInitialize(self); - } public int handleChatting(obj_id self, dictionary params) throws InterruptedException { obj_id guy1 = getObjIdObjVar(self, "guy1"); diff --git a/sku.0/sys.server/compiled/game/script/event/aprilfools/starport_april_fools.java b/sku.0/sys.server/compiled/game/script/event/aprilfools/starport_april_fools.java index cfefcea1d..ea08ae4da 100755 --- a/sku.0/sys.server/compiled/game/script/event/aprilfools/starport_april_fools.java +++ b/sku.0/sys.server/compiled/game/script/event/aprilfools/starport_april_fools.java @@ -25,10 +25,6 @@ public class starport_april_fools extends script.base_script messageTo(self, "heartbeat", null, 60.0f, false); return SCRIPT_CONTINUE; } - public int OnAttach(obj_id self) throws InterruptedException - { - return OnInitialize(self); - } public int heartbeat(obj_id self, dictionary params) throws InterruptedException { String foolsDayRunning = getConfigSetting("GameServer", "foolsDay");