mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-14 23:07:51 -04:00
19 lines
359 B
Java
Executable File
19 lines
359 B
Java
Executable File
package script.item.dna;
|
|
|
|
import script.obj_id;
|
|
|
|
public class dna_sample extends script.base_script
|
|
{
|
|
public dna_sample()
|
|
{
|
|
}
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
if (!isCrafted(self))
|
|
{
|
|
setCraftedId(self, self);
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|