X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fbadguy%2Fspidermite.cpp;h=d8f697078ca3f2a6f889885aa12c31a9901dc8d2;hb=4c9b57d29e67f9db5605f378549b07f670baa837;hp=2acd750f70da89bec2389fac83018082836363e1;hpb=cf4ef679418d46fda1bf14e4a4695b7abb12dd66;p=supertux.git diff --git a/src/badguy/spidermite.cpp b/src/badguy/spidermite.cpp index 2acd750f7..d8f697078 100644 --- a/src/badguy/spidermite.cpp +++ b/src/badguy/spidermite.cpp @@ -1,7 +1,7 @@ -// $Id: flyingsnowball.cpp 2642 2005-06-26 13:38:53Z matzebraun $ -// +// $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 #include @@ -96,8 +95,12 @@ SpiderMite::active_update(float elapsed_time) timer.start(FLYTIME); } movement=physic.get_movement(elapsed_time); - dir= Sector::current()->player->get_pos().x>get_pos().x?RIGHT:LEFT; - sprite->set_action(dir == LEFT ? "left" : "right"); + + Player* player = this->get_nearest_player(); + if (player) { + dir = (player->get_pos().x > get_pos().x) ? RIGHT : LEFT; + sprite->set_action(dir == LEFT ? "left" : "right"); + } } IMPLEMENT_FACTORY(SpiderMite, "spidermite")