mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-14 23:07:51 -04:00
20 lines
469 B
Java
Executable File
20 lines
469 B
Java
Executable File
package script.systems.jedi;
|
|
|
|
import script.obj_id;
|
|
|
|
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;
|
|
}
|
|
}
|