diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 455627aae8..8f280140a0 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -157,7 +157,7 @@ SUBSYSTEM_DEF(vote) return message_admins("Nobody voted in the dynamic vote; using default dynamic settings.") var/mean = (choices[PEACE]*-1+choices[CHAOS])/voted.len GLOB.dynamic_curve_centre = mean*20 - var/magic_curve_constant = (4-(abs((choices[PEACE])-choices[CHAOS])/(voted.len)))*4 //magic as hell. + var/magic_curve_constant = (4-(abs((choices[PEACE])-choices[CHAOS])/(voted.len)*4)) //magic as hell. 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]")