This commit is contained in:
parent
7ed15bcf97
commit
4c1f906c80
9 changed files with 65 additions and 4 deletions
|
@ -163,6 +163,14 @@
|
|||
#include "platform\ptrpdoor.h"
|
||||
#endif
|
||||
|
||||
#ifndef __PLATFORM_PCONVEYR_H__
|
||||
#include "platform\pconveyr.h"
|
||||
#endif
|
||||
|
||||
#ifndef __PLATFORM_PFALLNOR_H__
|
||||
#include "platform\pfallnor.h"
|
||||
#endif
|
||||
|
||||
#include "fx\fx.h"
|
||||
#include "fx\fxjfish.h"
|
||||
|
||||
|
@ -229,7 +237,7 @@ CNpcPlatform *CNpcPlatform::Create(int Type)
|
|||
case NPC_CRATE_PLATFORM:
|
||||
case NPC_FALLING_PLATFORM:
|
||||
{
|
||||
platform = new ("falling platform") CNpcFallingPlatform;
|
||||
platform = new ("falling platform") CNpcFallingNoRespawnPlatform;
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -365,6 +373,18 @@ CNpcPlatform *CNpcPlatform::Create(int Type)
|
|||
break;
|
||||
}
|
||||
|
||||
case NPC_CONVEYOR_GENERATOR:
|
||||
{
|
||||
platform = new ("conveyor generator") CNpcConveyorPlatformGenerator;
|
||||
break;
|
||||
}
|
||||
|
||||
case NPC_CONVEYOR_PLATFORM:
|
||||
{
|
||||
platform = new ("conveyor platform") CNpcConveyorPlatform;
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
{
|
||||
ASSERT( 0 );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue