mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
16 lines
311 B
Java
Executable File
16 lines
311 B
Java
Executable File
package script.structure;
|
|
|
|
import script.obj_id;
|
|
|
|
public class make_private extends script.base_script
|
|
{
|
|
public make_private()
|
|
{
|
|
}
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
permissionsMakePrivate(self);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|