Fix homes not deleting for unloaded worlds

This commit is contained in:
Len
2024-02-18 18:48:51 +01:00
parent cd3076bd55
commit 6e8fce7560
2 changed files with 6 additions and 1 deletions
@@ -110,6 +110,11 @@ public class PlayerConfig extends YamlConfiguration {
setStoredLocation(death ? "teleports.death" : "teleports.back", location);
}
public boolean hasHome(String name) {
ConfigurationSection section = getConfigurationSection("home." + name);
return section != null;
}
public Location getHome(String name) {
return getStoredLocation("home." + name);
}