Skip to content

Commit

Permalink
feat(regions): move update method into region class to be more precis…
Browse files Browse the repository at this point in the history
…e and easier to find (#163)
  • Loading branch information
Snabeldier authored Mar 30, 2024
1 parent 76d93d6 commit 0cf6d66
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/minevalley/core/api/regions/Region.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ public interface Region {

/**
* <b>Note:</b> This could be null!
*
* @return the residence this region is connected to, if existing.
*/
Residence getResidence();

void update(List<Area> included, List<Area> excluded);
}

0 comments on commit 0cf6d66

Please sign in to comment.