This commit is contained in:
parent
2237dbd79b
commit
254aa99695
3 changed files with 13 additions and 2 deletions
|
@ -1381,5 +1381,15 @@ bool CNpcPlatform::alwaysThink()
|
|||
int chapter=GameScene.getChapterNumber();
|
||||
int level=GameScene.getLevelNumber();
|
||||
|
||||
return( chapter == 1 && level == 5 );
|
||||
if ( chapter == 1 )
|
||||
{
|
||||
if ( level == 5 )
|
||||
{
|
||||
return( true );
|
||||
}
|
||||
}
|
||||
|
||||
return( false );
|
||||
|
||||
//return( ( chapter == 1 ) && ( level == 5 ) );
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue