From 53c90678b40bf45114205afd5ac8e96430420d14 Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Sat, 5 Mar 2016 00:41:12 +0200 Subject: [PATCH] Be a bit more clear about what needs copies. --- koperkapel/roaches.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koperkapel/roaches.py b/koperkapel/roaches.py index 08440cc..653f085 100644 --- a/koperkapel/roaches.py +++ b/koperkapel/roaches.py @@ -35,10 +35,10 @@ class RoachFactory: def assemble_frame(self, i, color, roach_data): roach = images.load("roach%s/roach_%d" % (self.suffix, i + 1)) eyes = images.load("roach%s/eyes_%d" % (self.suffix, i + 1)) - roach = roach.copy() - roach.fill(color, None, BLEND_RGBA_MULT) - roach.blit(eyes, (0, 0)) - return roach + frame = roach.copy() + frame.fill(color, None, BLEND_RGBA_MULT) + frame.blit(eyes, (0, 0)) + return frame def assemble(self, roach_data): color = roach_serum_color(roach_data) -- 2.34.1