Merge pull request #2161 from HassanSky81/master

Correct the update of POIChanges for bought cards from shops
This commit is contained in:
Anthony Calosa
2022-12-28 22:36:22 +08:00
committed by GitHub

View File

@@ -41,7 +41,7 @@ public class PointOfInterestChanges implements SaveFileContent {
}
data.storeObject("keys",keys.toArray(new String[0]));
for(int i=0;i<items.size();i++)
data.store("value_"+i,items.get(0).save());
data.store("value_"+i,items.get(i).save());
return data;
}
}