Skip to content

Commit

Permalink
Changed unknown incoming error message
Browse files Browse the repository at this point in the history
  • Loading branch information
danielga committed Oct 13, 2023
1 parent 61917b9 commit d5471cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sourcenet/incoming.lua
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ hook.Add("PreProcessMessages", "InFilter", function(netchan, read, write, localc
local msgtype = read:ReadUInt(NET_MESSAGE_BITS)
local handler = GetNetMessageInstance(netchan, msgtype)
if handler == nil then
MsgC(Color(255, 0, 0), "Unknown outgoing message " .. msgtype .. " with " .. read:GetNumBitsLeft() .. " bit(s) left\n")
MsgC(Color(255, 0, 0), "Unknown incoming message " .. msgtype .. " with " .. read:GetNumBitsLeft() .. " bit(s) left\n")
return false
end

Expand Down

0 comments on commit d5471cf

Please sign in to comment.