mirror of
https://github.com/nzp-team/quakec.git
synced 2025-02-16 17:10:55 +00:00
SERVER: Prohibit ADS during Melee animations
This commit is contained in:
parent
7b1df5578b
commit
da21c6021a
1 changed files with 3 additions and 1 deletions
|
@ -69,9 +69,11 @@ void() W_AimIn =
|
|||
|
||||
if (IsDualWeapon(self.weapon) ||
|
||||
self.reload_delay > time ||
|
||||
self.knife_delay > time ||
|
||||
self.sprinting ||
|
||||
self.new_anim_stop ||
|
||||
self.weapon == W_BK) {
|
||||
self.weapon == W_BK ||
|
||||
self.semiknife == true) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue