From 5024c8664bc577b22f9f07bb83a60a26b418e560 Mon Sep 17 00:00:00 2001 From: JTGSZ <46565256+JTGSZ@users.noreply.github.com> Date: Tue, 8 Oct 2019 01:02:45 -0400 Subject: [PATCH] Lowers view amount of turfs, fixes BOH moving dominator --- modular_citadel/code/game/gamemodes/gangs/dominator.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/modular_citadel/code/game/gamemodes/gangs/dominator.dm b/modular_citadel/code/game/gamemodes/gangs/dominator.dm index 5ad740ed2e..4946cad510 100644 --- a/modular_citadel/code/game/gamemodes/gangs/dominator.dm +++ b/modular_citadel/code/game/gamemodes/gangs/dominator.dm @@ -1,6 +1,7 @@ #define DOM_BLOCKED_SPAM_CAP 6 //32 instead of 40 for safety reasons. How many turfs aren't walls around dominator for it to work -#define DOM_REQUIRED_TURFS 32 +//Update ppl somehow fuckup at 32, now we are down to 25. I hope to god they don't try harder to wall it. +#define DOM_REQUIRED_TURFS 25 #define DOM_HULK_HITS_REQUIRED 10 /obj/machinery/dominator @@ -85,6 +86,9 @@ if(gang && gang.domination_time != NOT_DOMINATING) var/time_remaining = gang.domination_time_remaining() if(time_remaining > 0) + if(!is_station_level(z)) + explosion(src, 5, 10, 20, 30) //you now get a nice explosion if this moves off station. + qdel(src) //to make sure it doesn't continue to exist. if(excessive_walls_check()) gang.domination_time += 20 if(spam_prevention < DOM_BLOCKED_SPAM_CAP) @@ -164,7 +168,7 @@ examine(user) return - if(tempgang.domination_time != NOT_DOMINATING) + if(tempgang.domination_time != NOT_DOMINATING) to_chat(user, "Error: Hostile Takeover is already in progress.") return