Replace RegionDataStore.saveRegion to save

Replace RegionDataStore.loadRegion to load
Replace RegionDataStore.deleteRegion to delete
This commit is contained in:
2026-08-13 17:40:57 +02:00
parent 603b6f4787
commit 9d5cf83743
11 changed files with 29 additions and 29 deletions
@@ -65,7 +65,7 @@ public class DynamicRegionCommand extends SWCommand {
public void deleteRegion(Player player) {
Region region = DynamicRegionSystem.INSTANCE.get(player.getLocation());
if (!region.getType().isDeletable()) return;
region.deleteRegion();
region.delete();
}
@Mapper("regionType")