mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-07-07 12:29:04 -05:00
Grief: weapon stun time changes
This commit is contained in:
@ -1080,15 +1080,19 @@ do_game_mode_shellshock(is_melee, is_upgraded)
|
||||
self endon( "do_game_mode_shellshock" );
|
||||
self endon( "disconnect" );
|
||||
|
||||
time = 0.5;
|
||||
if(is_melee || is_upgraded)
|
||||
time = 0.375;
|
||||
if(is_melee)
|
||||
{
|
||||
time = 0.75;
|
||||
}
|
||||
else if(is_upgraded)
|
||||
{
|
||||
time = 0.5;
|
||||
}
|
||||
|
||||
self._being_shellshocked = 1;
|
||||
self shellshock( "grief_stab_zm", time );
|
||||
wait time;
|
||||
wait 0.75;
|
||||
self._being_shellshocked = 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user