Was looking at database.cpp for some help with item serialization, and what order the columns went in, not sure why but it seems my database reads item data from the serialization and it never seemed to before, anyways i came across this:
Quote:
item.Common.BaneDmgAmt = (sint atoi(row[ItemField::banedmgbody]);
|
at line 4125, not even sure if its not supposed to be this way but i would think, to be like every other one listed it would be like :
Quote:
item.Common.BaneDmgAmt = (sint atoi(row[ItemField::banedmgamt]);
|
i dont have much programming skill, but it seems the others follow that order?