Bug ReportOperating System:OtherShort Description:String concat. crashBehaviors:
- Client Freeze/Crash
Indepth Description:It seems that this code:
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.Code:local currentTime = os.date("*t", 906000490) local stamp = currentTime.hour .. " : " .. currentTime.min print(stamp)