Update synx.dm

This commit is contained in:
Sharkmare
2019-02-02 15:30:23 +01:00
committed by GitHub
parent 28891c13e4
commit fcfa278d6d
@@ -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