Merge pull request #803 from Citadel-Station-13/upstream-merge-26881

[MIRROR] Updated: Reduces dominator timer ceiling, changes territory scaling
This commit is contained in:
kevinz000
2017-05-07 22:36:03 -07:00
committed by GitHub
+1 -1
View File
@@ -249,7 +249,7 @@ GLOBAL_LIST_INIT(gang_colors_pool, list("red","orange","yellow","green","blue","
return gang_bosses
/proc/determine_domination_time(var/datum/gang/G)
return max(180,900 - (round((G.territory.len/GLOB.start_state.num_territories)*100, 1) * 12))
return max(180,480 - (round((G.territory.len/GLOB.start_state.num_territories)*100, 1) * 9))
//////////////////////////////////////////////////////////////////////
//Announces the end of the game with all relavent information stated//