[dnm] Gang domination now uses world.time

🆑 coiax
tweak: Gang domination now uses real time rather than game time, making
that 900 seconds an ACTUAL 900 seconds, like shuttle timers.
/🆑

I am currently unable to test this, if someone could that would be
great.
This commit is contained in:
Jack Edge
2016-06-24 09:40:51 +01:00
parent f1d84e5d40
commit 276316e100
8 changed files with 51 additions and 36 deletions
+4 -3
View File
@@ -288,10 +288,11 @@
priority_announce("The Emergency Shuttle has docked with the station. You have [timeLeft(600)] minutes to board the Emergency Shuttle.", null, 'sound/AI/shuttledock.ogg', "Priority")
feedback_add_details("emergency_shuttle", src.name)
//Gangs only have one attempt left if the shuttle has docked with the station to prevent suffering from dominator delays
// Gangs only have one attempt left if the shuttle has
// docked with the station to prevent suffering from
// endless dominator delays
for(var/datum/gang/G in ticker.mode.gangs)
if(isnum(G.dom_timer))
if(G.is_dominating)
G.dom_attempts = 0
else
G.dom_attempts = min(1,G.dom_attempts)