Update of /cvsroot/super-tux/supertux/src/trigger
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14310/src/trigger
Modified Files:
door.cpp
Log Message:
-Worldmap cleanups (use DrawingContext transformstack)
-Refactoring/Cleanup in PlayerStatus handling (no separate handling of
PlayerStatus in Player object now)
-Reimplemented stalactite badguy
-more smaller cleanups
Index: door.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/trigger/door.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- door.cpp 20 Dec 2004 21:24:28 -0000 1.7
+++ door.cpp 1 Apr 2005 12:16:53 -0000 1.8
@@ -79,6 +79,7 @@
{
//Check if door animation is complete
if(sprite->check_animation()) {
+ sprite->set_action("normal");
GameSession::current()->respawn(target_sector, target_spawnpoint);
}
}
|