- Joined
- Jun 26, 2020
- Messages
- 1,928
Hello, in my save load system I included save the date when the save was made, to the players can keep track of them but for some reason in this line to show the date:
Sometimes happens this error:
To let you know, the value
I can't check what is happening, because as I said it only happen sometimes so is hard to me replicate it and debuging it, do you know what is happening? I tried to google it but I hardly found something.
Lua:
BlzFrameSetText(TooltipDate, os.date("\x25c", os.time(data.date)))
To let you know, the value
data.date
is a table that stores the fields: year, month (1–12), day (1–31), hour (0–23), min (0–59), sec (0–61, due to leap seconds), wday (weekday, 1–7, Sunday is 1), yday (day of the year, 1–366), and isdst (daylight saving flag, a boolean).I can't check what is happening, because as I said it only happen sometimes so is hard to me replicate it and debuging it, do you know what is happening? I tried to google it but I hardly found something.