changeset 259:f23be1013c94

Fix function signature
author Neil Muller <drnlmuller@gmail.com>
date Thu, 05 Sep 2013 00:18:37 +0200
parents 083053422a84
children e723b313c958
files nagslang/enemies.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nagslang/enemies.py	Thu Sep 05 00:05:17 2013 +0200
+++ b/nagslang/enemies.py	Thu Sep 05 00:18:37 2013 +0200
@@ -126,7 +126,7 @@
         self.set_direction(x_step, y_step)
         super(PatrollingAlien, self).animate()
 
-    def collide_with_protagonist(self):
+    def collide_with_protagonist(self, protagonist):
         return 5
 
     @classmethod