mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
10 lines
305 B
Plaintext
10 lines
305 B
Plaintext
// This script handles destroying the location object that reserves
|
|
// asynch locations for the requestLocation() function.
|
|
//
|
|
// The message is sent by locations.destroyLocationObject(obj_id locationObject)
|
|
|
|
messageHandler handlerDestroyLocationObject()
|
|
{
|
|
destroyObject(self);
|
|
return SCRIPT_CONTINUE;
|
|
} |