mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
17 lines
520 B
Plaintext
17 lines
520 B
Plaintext
/**********************************************************************
|
|
* Title: postpone_grant
|
|
* Description: Attachs the jedi.postponeGrant objvar to the player.
|
|
**********************************************************************/
|
|
|
|
/***** TRIGGERS ********************************************************/
|
|
trigger OnInitialize()
|
|
{
|
|
if (!hasObjVar(self, "jedi.postponeGrant"))
|
|
setObjVar(self, "jedi.postponeGrant", 1);
|
|
|
|
detachScript(self, "systems.jedi.postpone_grant");
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|