mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-10 06:31:44 +00:00
SERVER: Prohibit Melee during Game Over sequence
This commit is contained in:
parent
3a991477ae
commit
4079ec4296
1 changed files with 1 additions and 1 deletions
|
@ -1200,7 +1200,7 @@ void() WeaponCore_Melee =
|
|||
// Do not trigger if we're Aiming down the Sight, or
|
||||
// already melee-ing, or doing some other action.
|
||||
if (self.knife_delay > time || self.new_anim_stop ||
|
||||
self.new_anim2_stop || self.zoom)
|
||||
self.new_anim2_stop || self.zoom || game_over)
|
||||
return;
|
||||
|
||||
// Perform the third person animation if standing
|
||||
|
|
Loading…
Reference in a new issue