Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lua/wire/client/text_editor/wire_expression2_editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading