1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-21 11:11:21 -04:00
OC-PsychOS2/module/chatbox-dprint.lua
2019-11-04 08:54:30 +11:00

8 lines
161 B
Lua

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