1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 15:17:57 -05:00

Zombies: change height to 60 in playable area

This commit is contained in:
Jbleezy
2023-04-23 02:21:57 -07:00
parent 43737718b6
commit 44dd3f6427
4 changed files with 13 additions and 3 deletions

View File

@ -414,4 +414,13 @@ zombie_can_drop_powerups( zombie )
return false;
return true;
}
zombie_complete_emerging_into_playable_area()
{
self setphysparams( 15, 0, 60 );
self.completed_emerging_into_playable_area = 1;
self notify( "completed_emerging_into_playable_area" );
self.no_powerups = 0;
self thread zombie_free_cam_allowed();
}