mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-14 23:07:51 -04:00
15 lines
270 B
Java
Executable File
15 lines
270 B
Java
Executable File
package script.item.conversion;
|
|
|
|
import script.obj_id;
|
|
|
|
public class medicine extends script.base_script
|
|
{
|
|
public medicine()
|
|
{
|
|
}
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|