From 6096f6824303f223922557f087144fb108233b1f Mon Sep 17 00:00:00 2001 From: Incoming5643 Date: Wed, 27 Sep 2017 19:13:19 -0400 Subject: [PATCH] Fixes poly lying about his age Recently poly was transitioned to increment his stats in Write_Memory, but the old incrementer was still around, which lead poly to double his age. --- code/modules/mob/living/simple_animal/parrot.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm index e8e945f77ca..1b60dccda3e 100644 --- a/code/modules/mob/living/simple_animal/parrot.dm +++ b/code/modules/mob/living/simple_animal/parrot.dm @@ -899,9 +899,6 @@ /mob/living/simple_animal/parrot/Poly/Life() if(!stat && SSticker.current_state == GAME_STATE_FINISHED && !memory_saved) - rounds_survived = max(++rounds_survived,1) - if(rounds_survived > longest_survival) - longest_survival = rounds_survived Write_Memory(FALSE) memory_saved = TRUE ..()