Halving can spawn timer for drones

from 10 minutes to 5.
Still prevents spam but is a more reasonable time
This commit is contained in:
Sharkmare
2019-03-18 03:29:52 +01:00
committed by GitHub
parent 0aa65232af
commit 4e16f779d3
@@ -145,9 +145,9 @@
pluralcheck = " [deathtimeminutes] minutes and"
var/deathtimeseconds = round((deathtime - deathtimeminutes * 600) / 10,1)
if (deathtime < 6000)
if (deathtime < 3000)
usr << "You have been dead for[pluralcheck] [deathtimeseconds] seconds."
usr << "You must wait 10 minutes to respawn as a drone!"
usr << "You must wait 5 minutes to respawn as a drone!"
return
var/list/all_fabricators = list()