* Comment out resizable flag because it blue-screens on Windows
[supertux.git] / src / object / electrifier.cpp
index 6ab6e0c..f1b8c1c 100644 (file)
@@ -1,4 +1,7 @@
+//  $Id$
+//
 //  SuperTux
+//  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
 //
 //  This program is free software; you can redistribute it and/or
 //  modify it under the terms of the GNU General Public License
 //  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 <config.h>
 #include "electrifier.hpp"
 #include "sector.hpp"
 #include "object/tilemap.hpp"
@@ -25,23 +29,22 @@ Electrifier::Electrifier(uint32_t oldtile, uint32_t newtile, float seconds)
   duration.start(seconds);
   change_from = oldtile;
   change_to = newtile;
-  Sector::current()->solids->change_all(change_from,change_to);
+  Sector::current()->change_solid_tiles(change_from,change_to);
 }
-  
+
 Electrifier::~Electrifier() {
-  remove_me();
 }
 
 void
-Electrifier::update(float ) 
+Electrifier::update(float )
 {
   if (duration.check()) {
-    Sector::current()->solids->change_all(change_to,change_from);
+    Sector::current()->change_solid_tiles(change_to,change_from);
     remove_me();
   }
 }
 
 void
-Electrifier::draw(DrawingContext& ) 
+Electrifier::draw(DrawingContext& )
 {
 }