From 280c6063b5ef4145e85776f40ca4a173889c44c5 Mon Sep 17 00:00:00 2001 From: cypress Date: Tue, 2 Jan 2024 09:35:14 -0500 Subject: [PATCH] SERVER: Disable IsLooking() check for wall weapons in NZ:P Beta --- source/server/entities/wall_weapon.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/server/entities/wall_weapon.qc b/source/server/entities/wall_weapon.qc index dab96e0..b1dafb2 100644 --- a/source/server/entities/wall_weapon.qc +++ b/source/server/entities/wall_weapon.qc @@ -138,7 +138,7 @@ void () WallWeapon_TouchTrigger = 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; }