From 392e628f3f674e17fbe0651b3a8bd1a9ae7f8a54 Mon Sep 17 00:00:00 2001 From: Putnam Date: Sat, 9 Nov 2019 14:58:38 -0800 Subject: [PATCH] lowered maximum curve width a good deal --- 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 37bc84a401..a4544c6572 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -172,7 +172,7 @@ SUBSYSTEM_DEF(vote) if(voted.len != 0) mean += (choices[PEACE]*-1+choices[CHAOS])/voted.len GLOB.dynamic_curve_centre = mean*20 - GLOB.dynamic_curve_width = CLAMP(4-abs(mean*10),0.5,4) + GLOB.dynamic_curve_width = CLAMP(3-abs(mean*10),0.5,4) to_chat(world,"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]") if("map")