I'm trying to pull the event chat_message but am having a strange issue. The event is pulled normally, but it outputs a bunch of information to the screen even without printing it within the program. The code I have is as follows:
local event = require("event")
while true do
local a,b,x,y = event.pull("chat_message")
end
this shouldnt print anything to the screen, however I get the following info with every chat event:
how do I prevent this message from showing up every time?