use of com.minecolonies.api.colony.IColonyView in project minecolonies by ldtteam.
the class EventListener method onColonyViewUpdated.
@SubscribeEvent
public void onColonyViewUpdated(@NotNull final ColonyViewUpdatedEvent event) {
final IColonyView colony = event.getColony();
final Set<BlockPos> graves = colony.getGraveManager().getGraves().keySet();
ColonyDeathpoints.updateGraves(this.jmap, colony, graves);
}
Aggregations