9 lines
167 B
Plaintext
9 lines
167 B
Plaintext
void main()
|
|
{
|
|
if (GetLocalInt(OBJECT_SELF, "Done") == 1)
|
|
return;
|
|
|
|
SetLocalInt(OBJECT_SELF, "Done", 1);
|
|
SetFacing(GetFacing(OBJECT_SELF) + 90.0);
|
|
}
|