Replace RegionDataStore.saveRegion to save

Replace RegionDataStore.loadRegion to load
Replace RegionDataStore.deleteRegion to delete
This commit is contained in:
2026-03-07 20:37:10 +01:00
parent a2aeaa5668
commit 12af4d0af1
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")