From 8c5bd4ecc9e6150745d4e43e981ca3ebfc8a0af4 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Fri, 23 Feb 2018 11:06:45 -0800 Subject: [PATCH] Doesn't count PiCreatureScene blinks as animations (that are counted up for -n purposes) --- topics/characters.py | 1 + 1 file changed, 1 insertion(+) diff --git a/topics/characters.py b/topics/characters.py index 5f454c00..46197d2a 100644 --- a/topics/characters.py +++ b/topics/characters.py @@ -575,6 +575,7 @@ class PiCreatureScene(Scene): time_to_blink = self.total_wait_time%self.seconds_to_blink == 0 if blink and self.any_pi_creatures_on_screen() and time_to_blink: self.blink() + self.num_plays -= 1 #This shouldn't count as an animation else: self.non_blink_wait() time -= 1