This commit is contained in:
Paul 2001-07-20 15:24:04 +00:00
parent 0ff65076d9
commit ee5e0f42ab

View File

@ -138,6 +138,8 @@ void CKelpTokenPickup::renderPickup(DVECTOR *_pos)
---------------------------------------------------------------------- */
void CKelpTokenPickup::collidedWith(CThing *_thisThing)
{
if(!isSetToShutdown())
{
switch(_thisThing->getThingType())
{
case TYPE_PLAYER:
@ -150,6 +152,7 @@ void CKelpTokenPickup::collidedWith(CThing *_thisThing)
ASSERT(0);
break;
}
}
}