This commit is contained in:
Charles 2001-07-16 14:26:15 +00:00
parent 911c868e99
commit 65e92fca91

View file

@ -54,6 +54,8 @@
---------------------------------------------------------------------- */
void CBossArenaTrigger::collidedWith(CThing *_thisThing)
{
if ( !GameScene.getBossHasBeenKilled() )
{
switch( _thisThing->getThingType() )
{
case TYPE_PLAYER:
@ -67,6 +69,7 @@ void CBossArenaTrigger::collidedWith(CThing *_thisThing)
default:
break;
}
}
}
/*===========================================================================