From d483c303ec3dc4c43c73cb35efb1280885d3b117 Mon Sep 17 00:00:00 2001 From: Ricardo Cruz Date: Sat, 8 May 2004 00:04:00 +0000 Subject: [PATCH] Fixed bug that was causing player's dead. Don't think it is totally solved SVN-Revision: 1036 --- src/player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/player.cpp b/src/player.cpp index 179b533f0..d447def0c 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -758,7 +758,7 @@ Player::check_bounds() base.x = scroll_x; if(base.x == scroll_x) - if(issolid(base.x, base.y) || issolid(base.x, base.y+32)) + if(issolid(base.x, base.y) || (size != SMALL && issolid(base.x, base.y+32))) kill(KILL); if(base.x + base.width > scroll_x + screen->w) -- 2.11.0