12 lines
237 B
Plaintext
12 lines
237 B
Plaintext
//This script first checks to make sure that the ModuleReloader item made
|
|
//this function call, if so reload module.
|
|
void main()
|
|
{
|
|
if (GetTag(GetItemActivated()) == "ModuleReloader")
|
|
{
|
|
StartNewModule("Sharnast");
|
|
return;
|
|
}
|
|
}
|
|
|