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

8 lines
161 B
Lua
Raw Normal View History

2019-11-03 16:54:30 -05: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