X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fobject%2Finvisible_block.cpp;h=c923c11abf41cd5b5d6dfe34e2241177f7e883fd;hb=5f1c84ed5ce0ab5450f92082a9aaaa9ca0effc39;hp=38e294769e9b6031d8f221708eee10e9781ee43e;hpb=39c8f41f9d46e3d2b890961814193363f0fa10c5;p=supertux.git diff --git a/src/object/invisible_block.cpp b/src/object/invisible_block.cpp index 38e294769..c923c11ab 100644 --- a/src/object/invisible_block.cpp +++ b/src/object/invisible_block.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 @@ -33,6 +32,7 @@ InvisibleBlock::InvisibleBlock(const Vector& pos) { bbox.set_pos(pos); flags &= ~FLAG_SOLID; + set_group(COLGROUP_MOVING); } void @@ -52,6 +52,7 @@ InvisibleBlock::hit(Player& ) sound_manager->play("sounds/brick.wav"); start_bounce(); flags |= FLAG_SOLID; + set_group(COLGROUP_STATIC); visible = true; }