Skip to content

Commit

Permalink
Attempt to fix edge case issue, related to Roughly Enough Resources
Browse files Browse the repository at this point in the history
  • Loading branch information
GirafiStudios committed Mar 19, 2023
1 parent 45c01bf commit 0a45b04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/teammetallurgy/aquaculture/Aquaculture.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ public Aquaculture() {
}

private void setupCommon(FMLCommonSetupEvent event) {
FishWeightHandler.registerFishData();
event.enqueueWork(FishWeightHandler::registerFishData);
event.enqueueWork(AquaEntities::setSpawnPlacement);
event.enqueueWork(WormFarmBlock::addCompostables);
if (AquaConfig.BASIC_OPTIONS.aqFishToBreedCats.get()) {
event.enqueueWork(FishRegistry::addCatBreeding);
}
if (AquaConfig.BASIC_OPTIONS.enableFishSpawning.get()) {
FishReadFromJson.read();
event.enqueueWork(FishReadFromJson::read);
}
}

Expand Down

0 comments on commit 0a45b04

Please sign in to comment.