This commit is contained in:
Charles 2001-07-16 20:50:07 +00:00
parent 3401c0d0ac
commit aa9b709247
4 changed files with 14 additions and 2 deletions

View file

@ -1372,4 +1372,14 @@ int Type= mapEditConvertTable[newType];
CNpcPlatform::NPC_PLATFORM_UNIT_TYPE CNpcPlatform::getTypeFromMapEdit( u16 newType )
{
return( mapEditConvertTable[newType] );
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool CNpcPlatform::alwaysThink()
{
int chapter=GameScene.getChapterNumber();
int level=GameScene.getLevelNumber();
return( chapter == 1 && level == 5 );
}