From b41cc460d10ce12790fd98147247aca7271123a5 Mon Sep 17 00:00:00 2001 From: Astralcircle <142503363+Astralcircle@users.noreply.github.com> Date: Tue, 30 Dec 2025 00:19:18 +0300 Subject: [PATCH] Fix CPPI error (again) Fixes a typo from my previous PR that was causing errors --- lua/wire/client/text_editor/wire_expression2_editor.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/wire/client/text_editor/wire_expression2_editor.lua b/lua/wire/client/text_editor/wire_expression2_editor.lua index 87bec978e4..4fb6884fea 100644 --- a/lua/wire/client/text_editor/wire_expression2_editor.lua +++ b/lua/wire/client/text_editor/wire_expression2_editor.lua @@ -1464,10 +1464,10 @@ Text here]# ]] local ownerStr if CPPI then - local owner = self:CPPIGetOwner() + local owner = v:CPPIGetOwner() if IsValid(owner) and owner:Nick() ~= nick then - ownerStr = string.format("Owner: %s | Code Author: %s", owner:GetName(), nick) + ownerStr = string.format("Owner: %s | Code Author: %s", owner:Nick(), nick) else ownerStr = "Owner: " .. nick end