mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-12 10:04:40 +02:00
14 lines
207 B
Lua
14 lines
207 B
Lua
local Public = {}
|
|
|
|
local locale_string = {'', '[PRINT] ', nil}
|
|
local raw_print = print
|
|
|
|
function print(str)
|
|
locale_string[3] = str
|
|
log(locale_string)
|
|
end
|
|
|
|
Public.raw_print = raw_print
|
|
|
|
return Public
|