mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-14 23:07:51 -04:00
16 lines
330 B
Java
Executable File
16 lines
330 B
Java
Executable File
package script.systems.jedi;
|
|
|
|
import script.obj_id;
|
|
|
|
public class jedi_player extends script.base_script
|
|
{
|
|
public jedi_player()
|
|
{
|
|
}
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
detachScript(self, "systems.jedi.jedi_player");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|