Thread: Update 2.5
View Single Post
07/01/16, 03:09 PM   #13
Haho
Join Date: Jul 2016
Posts: 15
sure :
I created a char with no cap first letter on PTS...

In English, savedvars were saved correctly but when i switched to german, something wasn't working because it didnt use the data that were saved on some event while i was testing in English, and the name appeared twice in the saved vars with 2 different orthographs :


Lua Code:
  1. ["craftlevels"] =
  2.                 {
  3.                     ["Randomion"] =
  4.                     {
  5.                     },
  6.                     ["Fgyhftgh"] =
  7.                     {
  8.                     },  --- this one was saved from german or french or both.
  9.                     ["fgyhftgh"] =
  10.                     {
  11.                         [1] = 10,
  12.                         [2] = 10,
  13.                         [6] = 10,
  14.                     },   --- this one was saved from english
  15.                 },

But as i switched to german and french before opening the savedvars, I can't tell which one(s) is faulty.

Not sure if it has always been like this cause i dont remember if i already used an uncapped name.

If it has always been like this, then it's not really an issue since "thatname" and "Thatname" count as the same upon creation, thus we cant create 2 name alike in the same savedvars,
BUT if it wasn't, prepare to hear people reporting missing data. (especially on addons that save data on the long run, it would suck badly)
  Reply With Quote