@@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/09/25
+ * Item group reading will now complain when a line doesn't has enough
+ fields. [Skotlex]
* Fixed #baselevelup adding instead of substracting status points when used
with negative levels. Also made it reset your stats if there wasn't enough
to substract from. [Skotlex]
@@ -20,6 +20,7 @@
=========================
09/25
+ * Fixed item group 35 (lottobox) in item_misc.txt [Skotlex]
* Added Ninja/Gunslinger job exp as separate exp chart [Playtester]
* Immaterial Sword now has a 3% chance of reducing target's sp by 30% [Playtester]
09/23
@@ -610,13 +610,13 @@
33,5042,5 //Bao Bao
33,5066,1 //Succubus Horn
// Lotto Box
-35,7391
-35,7392
-35,7393
-35,7394
-35,7395
-35,7396
-35,7397
-35,7398
-35,7540
-35,7541
+35,7391,1
+35,7392,1
+35,7393,1
+35,7394,1
+35,7395,1
+35,7396,1
+35,7397,1
+35,7398,1
+35,7540,1
+35,7541,1
@@ -493,8 +493,11 @@ static void itemdb_read_itemgroup_sub(const char* filename)
}
if(str[0]==NULL)
continue;
- if (j<3)
+ if (j<3) {
+ if (j>1) //Or else it barks on blank lines...
+ ShowWarning("itemdb_read_itemgroup: Insufficient fields for entry at %s:%d\n", filename, ln);
+ }
groupid = atoi(str[0]);
if (groupid < 0 || groupid >= MAX_ITEMGROUP) {
ShowWarning("itemdb_read_itemgroup: Invalid group %d in %s:%d\n", groupid, filename, ln);