mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-22 11:51:11 +00:00
SERVER: Disable IsLooking() check for wall weapons in NZ:P Beta
This commit is contained in:
parent
028e0a5a99
commit
280c6063b5
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ void () WallWeapon_TouchTrigger =
|
||||||
|
|
||||||
float wcost;
|
float wcost;
|
||||||
|
|
||||||
if (other.classname != "player" || other.downed || other.isBuying || !PlayerIsLooking(other, self)) {
|
if (other.classname != "player" || other.downed || other.isBuying || (map_compatibility_mode != MAP_COMPAT_BETA && !PlayerIsLooking(other, self))) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue