OC-PsychOS2/module/chatbox-dprint.lua

8 lines
161 B
Lua
Raw Normal View History

2019-11-04 08:54:30 +11:00
if component.list("chat_box")() then
function dprint(...)
for k,v in pairs({...}) do
component.invoke(component.list("chat_box")(),"say",v)
end
end
end