From 447c44e1b99a73c197485c4a877366dfcdc33ff8 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Fri, 21 Oct 2016 22:36:35 -0400 Subject: [PATCH] Simplify further --- code/modules/power/singularity/containment_field.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/power/singularity/containment_field.dm b/code/modules/power/singularity/containment_field.dm index 795cbb04750..4d1bad4e2b9 100644 --- a/code/modules/power/singularity/containment_field.dm +++ b/code/modules/power/singularity/containment_field.dm @@ -101,8 +101,7 @@ var/shock_damage = min(rand(30,40),rand(30,40)) if(iscarbon(user)) - var/stun = min(shock_damage, 15) - user.Stun(stun) + user.Stun(15) user.Weaken(10) user.electrocute_act(shock_damage, src, 1)