SERVER: Disable IsLooking() check for wall weapons in NZ:P Beta

This commit is contained in:
cypress 2024-01-02 09:35:14 -05:00
parent 028e0a5a99
commit 280c6063b5

View file

@ -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;
} }