From e68ad1398395fa64765113505ae6c9de5e200a97 Mon Sep 17 00:00:00 2001 From: Putnam Date: Thu, 14 Nov 2019 22:24:43 -0800 Subject: [PATCH] Reduced RNG a bit more --- 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 a4544c6572..50be61f91d 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(3-abs(mean*10),0.5,4) + GLOB.dynamic_curve_width = CLAMP(2-abs(mean*5),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")