Finalized Merge of 2.0-StoreDataInLore

Rebased onto Master Branch commit e5438e7ae3
And moved to new branch v2.0
This commit is contained in:
Sn0wStorm
2019-10-12 13:52:55 +02:00
parent 519c4821d9
commit 4a1f606e99
24 changed files with 380 additions and 477 deletions
+3 -3
View File
@@ -140,7 +140,7 @@ public class Wakeup {
locs.add("&6" + s + id + "&f" + s + ": " + world + " " + x + "," + y + "," + z);
}
}
Util.list(sender, locs, page);
BUtil.list(sender, locs, page);
}
public static void check(CommandSender sender, int id, boolean all) {
@@ -228,7 +228,7 @@ public class Wakeup {
public static void save(ConfigurationSection section, ConfigurationSection oldData) {
Util.createWorldSections(section);
BUtil.createWorldSections(section);
// loc is saved as a String in world sections with format x/y/z/pitch/yaw
if (!wakeups.isEmpty()) {
@@ -245,7 +245,7 @@ public class Wakeup {
String prefix;
if (worldName.startsWith("DXL_")) {
prefix = Util.getDxlName(worldName) + "." + id;
prefix = BUtil.getDxlName(worldName) + "." + id;
} else {
prefix = wakeup.loc.getWorld().getUID().toString() + "." + id;
}