diff nagslang/events.py @ 305:ce11e1cae0ed

Enemies now die
author Stefano Rivera <stefano@rivera.za.net>
date Fri, 06 Sep 2013 00:17:22 +0200
parents 47226c661ae2
children 3dee86b6c216
line wrap: on
line diff
--- a/nagslang/events.py	Fri Sep 06 00:16:32 2013 +0200
+++ b/nagslang/events.py	Fri Sep 06 00:17:22 2013 +0200
@@ -48,6 +48,7 @@
 
 class FireEvent(UserEvent):
     @classmethod
-    def post(cls, source, impulse, source_collision_type):
+    def post(cls, source, impulse, damage, source_collision_type):
         super(FireEvent, cls).post(source=source, impulse=impulse,
+                                   damage=damage,
                                    source_collision_type=source_collision_type)