[Other] String concat. crash
Bug Report
Operating System: Other
Short Description: String concat. crash
Behaviors:
Indepth Description: It seems that this code:
Code:
local currentTime = os.date("*t", 906000490)
local stamp = currentTime.hour .. " " .. currentTime.min
print(stamp)
Causes the client to crash. Meanwhile, this code:
Code:
local currentTime = os.date("*t", 906000490)
local stamp = currentTime.hour .. " : " .. currentTime.min
print(stamp)
Does not. As you can see, the only difference is an extra space and : in the latter.