# HG changeset patch # User Emmanuel Gil Peyrot # Date 1378979964 -7200 # Node ID b16d34fca5b4293d609370618ba5f4bb01187c13 # Parent 5f5955635d2c206d07200159a9b76377100c62ac Revert a change in 78e1c3864e73, causing boss rush to not destroy any standard enemy. diff --git a/pytouhou/game/game.pxd b/pytouhou/game/game.pxd --- a/pytouhou/game/game.pxd +++ b/pytouhou/game/game.pxd @@ -25,4 +25,4 @@ cdef class Game: cdef void update_hints(self) cdef void update_faces(self) cdef void update_bullets(self) - cdef void cleanup(self) + cpdef cleanup(self) diff --git a/pytouhou/game/game.pyx b/pytouhou/game/game.pyx --- a/pytouhou/game/game.pyx +++ b/pytouhou/game/game.pyx @@ -456,7 +456,7 @@ cdef class Game: item.on_collect(player) - cdef void cleanup(self): + cpdef cleanup(self): cdef Enemy enemy cdef Bullet bullet cdef Item item