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