We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61917b9 commit d5471cfCopy full SHA for d5471cf
sourcenet/incoming.lua
@@ -64,7 +64,7 @@ hook.Add("PreProcessMessages", "InFilter", function(netchan, read, write, localc
64
local msgtype = read:ReadUInt(NET_MESSAGE_BITS)
65
local handler = GetNetMessageInstance(netchan, msgtype)
66
if handler == nil then
67
- 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")
68
return false
69
end
70
0 commit comments