From: Ricardo Cruz Date: Tue, 19 Oct 2004 12:27:51 +0000 (+0000) Subject: Bugfix: bomb ticking always has the left direction. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=99e8021e04272ce390fb8cf65404b6b2d956f5fc;p=supertux.git Bugfix: bomb ticking always has the left direction. SVN-Revision: 2031 --- diff --git a/src/badguy.cpp b/src/badguy.cpp index b540a52ab..da1c49e3e 100644 --- a/src/badguy.cpp +++ b/src/badguy.cpp @@ -1189,8 +1189,8 @@ BadGuy::explode(bool right_way) { badguy->timer.start(0); badguy->mode = BOMB_TICKING; - badguy->dir = dir; } + badguy->dir = dir; remove_me(); }