Be a bit more clear about what needs copies.
authorSimon Cross <hodgestar@gmail.com>
Fri, 4 Mar 2016 22:41:12 +0000 (00:41 +0200)
committerSimon Cross <hodgestar@gmail.com>
Fri, 4 Mar 2016 22:41:12 +0000 (00:41 +0200)
koperkapel/roaches.py

index 08440ccda8333e1b3e7369585682038a12991100..653f085aa6a39f4a64ebc2d9d89311da2dad0f42 100644 (file)
@@ -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)