From 69f4c6ea2853e7eba717b07e031cc5b5803d9408 Mon Sep 17 00:00:00 2001 From: bjurd <177191469+bjurd@users.noreply.github.com> Date: Sat, 7 Feb 2026 00:32:16 -0500 Subject: [PATCH] Check isentity on owner in DrawWorldTip --- lua/entities/base_wire_entity.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/entities/base_wire_entity.lua b/lua/entities/base_wire_entity.lua index 870e639858..dec0e2618d 100644 --- a/lua/entities/base_wire_entity.lua +++ b/lua/entities/base_wire_entity.lua @@ -159,7 +159,7 @@ if CLIENT then local name if CPPI then local owner = self:CPPIGetOwner() - name = string.format("(%s)", IsValid(owner) and owner:Nick() or "World") + name = string.format("(%s)", isentity(owner) and IsValid(owner) and owner:Nick() or "World") else name = "(" .. self:GetPlayerName() .. ")" end