From 409d9ecdae43a66eaa66b871fdf1a96a8693d617 Mon Sep 17 00:00:00 2001 From: scrubmcnoob Date: Tue, 24 Jan 2017 06:53:32 -0500 Subject: [PATCH] Tweaks --- code/game/gamemodes/shadowling/shadowling.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/game/gamemodes/shadowling/shadowling.dm b/code/game/gamemodes/shadowling/shadowling.dm index 104026d5719..528d9396e51 100644 --- a/code/game/gamemodes/shadowling/shadowling.dm +++ b/code/game/gamemodes/shadowling/shadowling.dm @@ -98,9 +98,8 @@ Made by Xhuis shadow.restricted_roles = restricted_jobs shadowlings-- - var/num_players = num_players() - required_thralls = round(num_players / 3) - required_thralls = Clamp(required_thralls, 15, 25) + var/thrall_scaling = round(num_players() / 3) + required_thralls = Clamp(thrall_scaling, 15, 25) ..() return 1