From fcfa278d6dfcdd47ffeeffe2ec36bd9978f9d48a Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Sat, 2 Feb 2019 15:30:23 +0100 Subject: [PATCH] Update synx.dm --- .../modules/mob/living/simple_animal/animals/synx.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/mob/living/simple_animal/animals/synx.dm b/code/modules/mob/living/simple_animal/animals/synx.dm index 60cf5a5d25..7b838961e6 100644 --- a/code/modules/mob/living/simple_animal/animals/synx.dm +++ b/code/modules/mob/living/simple_animal/animals/synx.dm @@ -216,9 +216,9 @@ mob/living/simple_animal/synx/PunchTarget() //PET speechcode, simplistic but more than enough for the PET /mob/living/simple_animal/retaliate/synx/pet/hear_say(message) - . = ..() - if(!message) return - if(message) - if(speak.len==memorysize) - speak.remove(pick(speak))//making the list more dynamic - speak += message + . = ..() + if(!message) return + if(message) + if(speak.len>=memorysize) + speak.remove(pick(speak))//making the list more dynamic + speak += message