Skip to content

Commit

Permalink
fix superuser serverside print newline (#2001)
Browse files Browse the repository at this point in the history
  • Loading branch information
ax255 authored Jan 28, 2025
1 parent 200064c commit 51ab37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/starfall/libs_sh/builtins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ if SERVER then
function builtins_library.print(...)
local data, strlen, size = argsToChat(...)
if instance.player == SF.Superuser then
MsgC("[SF] ", unpack(data))
MsgC("[SF] ", unpack(data), "\n")
return
end
printBurst:use(instance.player, size)
Expand Down

0 comments on commit 51ab37c

Please sign in to comment.