1
0
mirror of https://e.coding.net/circlecloud/LuckLottery.git synced 2024-11-16 09:58:50 +00:00

fix: 修复数据载入错误

Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
502647092 2016-08-16 09:20:01 +08:00
parent 518a5edb90
commit ddc25570df

View File

@ -89,7 +89,9 @@ public class PlayerData {
public static void reloadPlayerLottery() {
final Set<String> apl = playerdata.getKeys(false);
for (final String p : apl) {
loadPlayerLottery(p);
if (playerdata.isConfigurationSection(p)) {
loadPlayerLottery(p);
}
}
}