From 6cbb59170bed59d5466bac927e5995b02a0d41b1 Mon Sep 17 00:00:00 2001 From: LegendaryGuard Date: Thu, 7 Jul 2022 23:20:08 +0200 Subject: [PATCH] Now tesla turret is owner's nade friend :) No longer attacks him in non-team gamemodes --- qcsrc/common/turrets/turret/tesla.qc | 1 + 1 file changed, 1 insertion(+) diff --git a/qcsrc/common/turrets/turret/tesla.qc b/qcsrc/common/turrets/turret/tesla.qc index 4c27bc9acc..f90672b65d 100644 --- a/qcsrc/common/turrets/turret/tesla.qc +++ b/qcsrc/common/turrets/turret/tesla.qc @@ -62,6 +62,7 @@ bool turret_tesla_firecheck(entity this) if (turret_validate_target(this, this.enemy, this.target_validate_flags) <= 0) { this.enemy = NULL; + if(turret_select_target(this) == this.realowner) return false; this.target_validate_time = time + 0.5; do_target_scan = 1; } -- 2.39.2