From: florianf Date: Tue, 9 Mar 2010 12:40:07 +0000 (+0000) Subject: Renamed the "bombfish" sprite to "skydive". X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=aa7c1c38eea83d100fe8a4a19a6988946d7aa75b;p=supertux.git Renamed the "bombfish" sprite to "skydive". git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6584 837edb03-e0f3-0310-88ca-d4d4e8b29345 --- diff --git a/data/images/creatures/bombfish/bombfish.png b/data/images/creatures/bombfish/bombfish.png deleted file mode 100644 index b3ff8adb6..000000000 Binary files a/data/images/creatures/bombfish/bombfish.png and /dev/null differ diff --git a/data/images/creatures/bombfish/bombfish.sprite b/data/images/creatures/bombfish/bombfish.sprite deleted file mode 100644 index 5d1d3eef0..000000000 --- a/data/images/creatures/bombfish/bombfish.sprite +++ /dev/null @@ -1,6 +0,0 @@ -(supertux-sprite - (action - (name "default") - (hitbox 8 4 28 43) - (images "bombfish.png")) -) diff --git a/data/images/creatures/skydive/skydive.png b/data/images/creatures/skydive/skydive.png new file mode 100644 index 000000000..b3ff8adb6 Binary files /dev/null and b/data/images/creatures/skydive/skydive.png differ diff --git a/data/images/creatures/skydive/skydive.sprite b/data/images/creatures/skydive/skydive.sprite new file mode 100644 index 000000000..01613989a --- /dev/null +++ b/data/images/creatures/skydive/skydive.sprite @@ -0,0 +1,6 @@ +(supertux-sprite + (action + (name "default") + (hitbox 8 4 28 43) + (images "skydive.png")) +) diff --git a/src/badguy/skydive.cpp b/src/badguy/skydive.cpp index 464bfd1b3..244686ed0 100644 --- a/src/badguy/skydive.cpp +++ b/src/badguy/skydive.cpp @@ -23,13 +23,13 @@ #include "object/explosion.hpp" SkyDive::SkyDive(const Reader& reader) : - BadGuy(reader, "images/creatures/bombfish/bombfish.sprite"), + BadGuy(reader, "images/creatures/skydive/skydive.sprite"), is_grabbed(false) { } SkyDive::SkyDive(const Vector& pos, Direction d) : - BadGuy(pos, d, "images/creatures/bombfish/bombfish.sprite"), + BadGuy(pos, d, "images/creatures/skydive/skydive.sprite"), is_grabbed(false) { }