From 6ac0c309ec6358ac17f801ef13ffd9b40dc5b84d Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Sat, 26 Nov 2016 01:34:21 -0500 Subject: [PATCH] copy and paster errrrrrrrr --- code/modules/mob/living/status_procs.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/living/status_procs.dm b/code/modules/mob/living/status_procs.dm index cb12000eb0e..402f94e837e 100644 --- a/code/modules/mob/living/status_procs.dm +++ b/code/modules/mob/living/status_procs.dm @@ -392,15 +392,15 @@ // CULTSLURRING -/mob/living/Slur(amount) +/mob/living/CultSlur(amount) SetSlur(max(slurring, amount)) -/mob/living/SetSlur(amount) +/mob/living/SetCultSlur(amount) slurring = max(amount, 0) -/mob/living/AdjustSlur(amount, bound_lower = 0, bound_upper = INFINITY) - var/new_value = directional_bounded_sum(slurring, amount, bound_lower, bound_upper) - SetSlur(new_value) +/mob/living/AdjustCultSlur(amount, bound_lower = 0, bound_upper = INFINITY) + var/new_value = directional_bounded_sum(cultslurring, amount, bound_lower, bound_upper) + SetCultSlur(new_value) // STUN