Fixed potential double spawn issues.

This commit is contained in:
Cekis
2016-04-05 18:04:58 +01:00
parent 1802c7c8db
commit 3fb23cccc0
4 changed files with 0 additions and 16 deletions
@@ -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");
@@ -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");
@@ -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");
@@ -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");