mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 19:45:22 +09:00
10 lines
191 B
Lua
10 lines
191 B
Lua
--luacheck:ignore global print
|
|
local locale_string = {'', '[PRINT] ', nil}
|
|
local raw_print = print
|
|
|
|
function print(str)
|
|
locale_string[3] = str
|
|
log(locale_string)
|
|
end
|
|
|
|
return raw_print |