Fixes proc arguments

This commit is contained in:
Firecage
2015-07-15 23:52:35 +02:00
parent 6a0faa4ff6
commit 4688c2c969
832 changed files with 3721 additions and 3664 deletions
+2 -2
View File
@@ -44,7 +44,7 @@ var/datum/subsystem/timer/SStimer
/datum/timedevent/Destroy()
SStimer.processing -= src
/proc/addtimer(var/thingToCall, var/procToCall, var/wait, var/argList = list())
/proc/addtimer(thingToCall, procToCall, wait, argList = list())
if (!SStimer) //can't run timers before the mc has been created
return
if (!thingToCall || !procToCall || wait <= 0)
@@ -63,7 +63,7 @@ var/datum/subsystem/timer/SStimer
return event.id
/proc/deltimer(var/id)
/proc/deltimer(id)
for (var/datum/timedevent/event in SStimer.processing)
if (event.id == id)
qdel(event)