*Commented out persisting of objects in order to keep things working in buildout tables

This commit is contained in:
Redacted by Stellabellum INC
2014-11-11 01:50:22 -08:00
parent 95d8ded6e6
commit 295f9956aa
@@ -23,7 +23,7 @@ messageHandler bootStrap()
location locTest = getLocation(self);
locTest.x = locTest.x +1;
obj_id objRaidSpawner = createObject(MASTER_OBJECT_TEMPLATE, locTest);
persistObject(objRaidSpawner);
//persistObject(objRaidSpawner);
setObjVar(self, "objRaidSpawner", objRaidSpawner); // Suppress linting - The lint script is incorrectly
// catching this due to the similarly named array
@@ -31,4 +31,4 @@ messageHandler bootStrap()
setObjVar(objRaidSpawner, "strDataTable", strDataTable);
}
return SCRIPT_CONTINUE;
}
}