mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-28 17:56:25 -04:00
Fixed potential double spawn issues.
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user