X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fbadguy%2Fpoisonivy.cpp;h=cad1a64025686a439bebd2179c4fb335db797d46;hb=07ddaed2a657e4d2a3d038fed223fc5827159caf;hp=848f5600faf8629d2abc85266b3c664b93e251bf;hpb=5b7f9214cb929399f1a855ef5807018a9447d510;p=supertux.git diff --git a/src/badguy/poisonivy.cpp b/src/badguy/poisonivy.cpp index 848f5600f..cad1a6402 100644 --- a/src/badguy/poisonivy.cpp +++ b/src/badguy/poisonivy.cpp @@ -1,7 +1,7 @@ // $Id$ -// +// // SuperTux -// Copyright (C) 2005 Matthias Braun +// Copyright (C) 2006 Matthias Braun // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -12,11 +12,10 @@ // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. -// +// // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -// 02111-1307, USA. +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include @@ -29,7 +28,7 @@ PoisonIvy::PoisonIvy(const lisp::Lisp& reader) reader.get("x", start_position.x); reader.get("y", start_position.y); bbox.set_size(31.8, 31.8); - sprite = sprite_manager->create("poisonivy"); + sprite = sprite_manager->create("images/creatures/poison_ivy/poison_ivy.sprite"); set_direction = false; } @@ -38,7 +37,7 @@ PoisonIvy::PoisonIvy(float pos_x, float pos_y, Direction d) start_position.x = pos_x; start_position.y = pos_y; bbox.set_size(31.8, 31.8); - sprite = sprite_manager->create("poisonivy"); + sprite = sprite_manager->create("images/creatures/poison_ivy/poison_ivy.sprite"); set_direction = true; initial_direction = d; }