Update of /cvsroot/super-tux/supertux/src/badguy
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22775/src/badguy
Modified Files:
badguy.cpp
Log Message:
fixed setup.cpp not finding correct data path
removed some old debug output
Index: badguy.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/badguy/badguy.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- badguy.cpp 31 Dec 2004 17:55:29 -0000 1.11
+++ badguy.cpp 9 Jan 2005 17:31:16 -0000 1.12
@@ -136,7 +136,6 @@
// give badguys some invincible time (prevent them from being hit multiple times)
// use hitpoints also when hit by fireball or invincible tux
hitpoints--;
- std::cout << "Hitpoints: " << hitpoints << std::endl;
if(collision_squished(player))
return ABORT_MOVE;
else if (hitpoints <= 0) {
|