Runtime fixies

This commit is contained in:
d3athrow
2015-01-29 18:44:36 -06:00
parent 95acf2f308
commit f1644bb0af
29 changed files with 261 additions and 215 deletions

View File

@@ -31,7 +31,7 @@ datum/updateQueueWorker/proc/doWork()
var/datum/object = objects[objects.len] // Pull out the object
objects.len-- // Remove the object from the list
if (istype(object) && !object.disposed) // We only work with real objects
if (istype(object) && !isturf(object) && !object.disposed) // We only work with real objects
call(object, procName)(arglist(arguments))
// If there's nothing left to execute