mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
26 lines
609 B
Java
26 lines
609 B
Java
package script.systems.jedi;
|
|
|
|
import script.*;
|
|
import script.base_class.*;
|
|
import script.combat_engine.*;
|
|
import java.util.Arrays;
|
|
import java.util.Hashtable;
|
|
import java.util.Vector;
|
|
import script.base_script;
|
|
|
|
public class postpone_grant extends script.base_script
|
|
{
|
|
public postpone_grant()
|
|
{
|
|
}
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
if (!hasObjVar(self, "jedi.postponeGrant"))
|
|
{
|
|
setObjVar(self, "jedi.postponeGrant", 1);
|
|
}
|
|
detachScript(self, "systems.jedi.postpone_grant");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|