Skip to content

Commit d5471cf

Browse files
committed
Changed unknown incoming error message
1 parent 61917b9 commit d5471cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sourcenet/incoming.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ hook.Add("PreProcessMessages", "InFilter", function(netchan, read, write, localc
6464
local msgtype = read:ReadUInt(NET_MESSAGE_BITS)
6565
local handler = GetNetMessageInstance(netchan, msgtype)
6666
if handler == nil then
67-
MsgC(Color(255, 0, 0), "Unknown outgoing message " .. msgtype .. " with " .. read:GetNumBitsLeft() .. " bit(s) left\n")
67+
MsgC(Color(255, 0, 0), "Unknown incoming message " .. msgtype .. " with " .. read:GetNumBitsLeft() .. " bit(s) left\n")
6868
return false
6969
end
7070

0 commit comments

Comments
 (0)