From: LMH Date: Sat, 13 Jul 2013 03:11:34 +0000 (-1000) Subject: Short Fuse runs dead-script when exploding, not just when kill_fall() is called X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=11e150736b6db59bfaef039f72c0daa11572d402;p=supertux.git Short Fuse runs dead-script when exploding, not just when kill_fall() is called --- diff --git a/src/badguy/short_fuse.cpp b/src/badguy/short_fuse.cpp index ae0c05cc2..d36c54da1 100644 --- a/src/badguy/short_fuse.cpp +++ b/src/badguy/short_fuse.cpp @@ -71,6 +71,7 @@ ShortFuse::explode (void) explosion->pushes (true); Sector::current()->add_object (explosion); + run_dead_script (); remove_me (); } @@ -101,7 +102,6 @@ void ShortFuse::kill_fall (void) { explode (); - run_dead_script (); } /* vim: set sw=2 sts=2 et : */