mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-11 15:48:05 -05:00
Zombies: change height to 60 in playable area
This commit is contained in:
@ -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();
|
||||
}
|
@ -25,11 +25,11 @@ jail_traversal_fix()
|
||||
{
|
||||
if ( node.animscript == "zm_jump_down_48" && node.type == "Begin" )
|
||||
{
|
||||
self setphysparams( 25, 0, 48 );
|
||||
self setphysparams( 25, 0, 60 );
|
||||
wait 1;
|
||||
|
||||
if ( is_true( self.has_legs ) )
|
||||
self setphysparams( 15, 0, 48 );
|
||||
self setphysparams( 15, 0, 60 );
|
||||
else
|
||||
self setphysparams( 15, 0, 24 );
|
||||
}
|
||||
|
Reference in New Issue
Block a user