This commit is contained in:
Charles 2001-07-09 21:43:13 +00:00
parent d772421e6a
commit 33ce5c2f03
7 changed files with 21 additions and 0 deletions

View File

@ -222,6 +222,9 @@ void CNpcBouncingBarrelHazard::collidedWith( CThing *_thisThing )
break;
}
case TYPE_NPC:
break;
default:
ASSERT(0);
break;

View File

@ -174,6 +174,9 @@ void CNpcBoatHazard::collidedWith( CThing *_thisThing )
break;
}
case TYPE_NPC:
break;
default:
ASSERT(0);
break;

View File

@ -209,6 +209,9 @@ void CNpcBouncingRockHazard::collidedWith( CThing *_thisThing )
break;
}
case TYPE_NPC:
break;
default:
ASSERT(0);
break;

View File

@ -216,6 +216,9 @@ void CNpcFallingHazard::collidedWith( CThing *_thisThing )
break;
}
case TYPE_NPC:
break;
default:
ASSERT(0);
break;

View File

@ -176,6 +176,9 @@ void CNpcFlyTrapHazard::collidedWith( CThing *_thisThing )
break;
}
case TYPE_NPC:
break;
default:
ASSERT(0);
break;

View File

@ -84,6 +84,9 @@ void CNpcPressureSwitchHazard::collidedWith( CThing *_thisThing )
break;
}
case TYPE_NPC:
break;
default:
ASSERT(0);
break;

View File

@ -94,6 +94,9 @@ void CNpcRisingWeightWheelHazard::collidedWith( CThing *_thisThing )
break;
}
case TYPE_NPC:
break;
default:
ASSERT(0);
break;