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 Nov 28, 2022
1 parent 84cff17 commit a128066
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 a128066

Please sign in to comment.