diff pytouhou/game/bullet.py @ 156:ebfd328e700c

Rename a few functions, move a few things around...
author Thibaut Girka <thib@sitedethib.com>
date Mon, 10 Oct 2011 18:34:36 +0200
parents 86807b8a63bd
children 7769ce7be03c
line wrap: on
line diff
--- a/pytouhou/game/bullet.py
+++ b/pytouhou/game/bullet.py
@@ -107,10 +107,9 @@ class Bullet(object):
                                                    (self.speed,), 16)
 
 
-    def collide(self, player):
+    def collide(self):
         #TODO: animation
         self._removed = True
-        player.die()
 
 
     def update(self):