mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
14 lines
296 B
Plaintext
14 lines
296 B
Plaintext
// Fix for having wrong objvar value on spawner objectin world snapshot.
|
|
|
|
trigger OnAttach()
|
|
{
|
|
messageTo(self, "attachMissingScript", null, 1, false);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
messageHandler attachMissingScript()
|
|
{
|
|
attachScript(self, "conversation.sean_contact");
|
|
return SCRIPT_CONTINUE;
|
|
}
|