From 9a8fb3e0d244da0254b5e66c7b208acb99f91ee3 Mon Sep 17 00:00:00 2001 From: Putnam Date: Thu, 7 Nov 2019 03:50:49 -0800 Subject: [PATCH] 4-'ing twice --- code/controllers/subsystem/vote.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 67822395f7..98735411bd 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -163,7 +163,7 @@ SUBSYSTEM_DEF(vote) var/mean = (choices["extended"]*-1+choices[PEACE]*-1+choices[CHAOS])/voted.len GLOB.dynamic_curve_centre = mean*20 var/magic_curve_constant = (4-(abs((choices[PEACE]+choices["extended"])-choices[CHAOS])/(voted.len)))*4 //magic as hell. - GLOB.dynamic_curve_width = CLAMP(4-magic_curve_constant,0.5,4) + GLOB.dynamic_curve_width = CLAMP(magic_curve_constant,0.5,4) to_chat(world,"Dynamic curve centre set to [GLOB.dynamic_curve_centre] and width set to [GLOB.dynamic_curve_width].") message_admins("Dynamic curve centre set to [GLOB.dynamic_curve_centre] and width set to [GLOB.dynamic_curve_width]") log_admin("Dynamic curve centre set to [GLOB.dynamic_curve_centre] and width set to [GLOB.dynamic_curve_width]")