Remove some old print statements
This commit is contained in:
@@ -48,13 +48,13 @@ function shared.Messenger.Init()
|
||||
if not message.channel or message.channel == "" then return end
|
||||
|
||||
if message.channel == "CHANNEL" and message.data and string.match(message.data, "%D") then
|
||||
print("Channel presented as string:", message.data)
|
||||
--print("Channel presented as string:", message.data)
|
||||
local channelId = GetChannelName(message.data)
|
||||
if channelId == 0 then
|
||||
print("Channel not found, joining")
|
||||
if channelId == 0 then
|
||||
print(string.format("Channel not found, joining %s", message.data))
|
||||
channelId = FindOrJoinChannel(message.data)
|
||||
end
|
||||
print("Channel resolved to id", channelId)
|
||||
--print("Channel resolved to id", channelId)
|
||||
message.data = tostring(channelId)
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user