Remove ignore list save/load

Due to uuids i had to remove it. Now this list is only temporal.
This commit is contained in:
Shevchik
2014-07-09 09:23:41 +04:00
parent e8c930e418
commit 80d877390b
2 changed files with 5 additions and 54 deletions

View File

@@ -66,8 +66,7 @@ public class Chairs extends JavaPlugin {
return;
}
chairEffects = new ChairEffects(this);
ignoreList = new ChairsIgnoreList(this);
ignoreList.load();
ignoreList = new ChairsIgnoreList();
psitdata = new PlayerSitData(this);
getConfig().options().copyDefaults(true);
saveConfig();
@@ -95,9 +94,6 @@ public class Chairs extends JavaPlugin {
}
}
}
if (ignoreList != null) {
ignoreList.save();
}
if (chairEffects != null) {
chairEffects.cancelHealing();
chairEffects.cancelPickup();