Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ccuser44 authored Nov 24, 2024
1 parent b9eedb2 commit 51e77d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MainModule/Server/Shared/Service.luau
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ return function(errorHandler, eventChecker, fenceSpecific, env)
if plr.Name == "[Unknown User]" then
return `[Unknown User{(if plr.UserId and plr.UserId ~= -1 then ` {plr.UserId}` else "")}]`
end
local str = if plr.DisplayName == plr.Name then `@{plr.Name}` else `{plr.DisplayName or "???"} ({plr.Name or "???"})"
local str = if plr.DisplayName == plr.Name then `@{plr.Name}` else `{plr.DisplayName or "???"} ({plr.Name or "???"})`
if withUserId then
str ..= `[{if plr.UserId and plr.UserId ~= -1 then plr.UserId else "?"}]`
end
Expand Down

0 comments on commit 51e77d0

Please sign in to comment.