From: Simon Cross Date: Fri, 4 Mar 2016 22:41:12 +0000 (+0200) Subject: Be a bit more clear about what needs copies. X-Git-Url: https://git.ctpug.org.za/?p=koperkapel.git;a=commitdiff_plain;h=53c90678b40bf45114205afd5ac8e96430420d14 Be a bit more clear about what needs copies. --- 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)