Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(regions): move update method into region class to be more precise and easier to find #163

Merged
merged 3 commits into from
Mar 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/main/java/minevalley/core/api/CoreServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,8 @@ public interface CoreServer {

Region createRegion(List<Area> included, List<Area> excluded);

void reloadRegion(int id);

List<Region> getRegions(Block block);

Residence getResidence(int id);
Expand Down
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);
}
Loading