Skip to content

Commit

Permalink
Fix callisto ice bee products (#3277)
Browse files Browse the repository at this point in the history
  • Loading branch information
FourIsTheNumber authored Sep 25, 2024
1 parent dc1d954 commit 00b6c43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/gregtech/loaders/misc/GTBeeDefinition.java
Original file line number Diff line number Diff line change
Expand Up @@ -1937,7 +1937,7 @@ public void accept(GTBeeDefinition dis) {
JUPITER(GTBranchDefinition.PLANET, "Jupiter", false, new Color(0x734B2E), new Color(0xD0CBC4), beeSpecies -> {
beeSpecies.addProduct(GTBees.combs.getStackForType(CombType.JUPITER), 0.35f);
beeSpecies.addSpecialty(GTModHandler.getModItem(NewHorizonsCoreMod.ID, "item.CallistoStoneDust", 1, 0), 0.05f);
beeSpecies.addSpecialty(GTModHandler.getModItem(NewHorizonsCoreMod.ID, "item.CallistoIceDust", 1, 0), 0.05f);
beeSpecies.addSpecialty(Materials.CallistoIce.getDust(1), 0.05f);
beeSpecies.addSpecialty(GTModHandler.getModItem(NewHorizonsCoreMod.ID, "item.IoStoneDust", 1, 0), 0.05f);
beeSpecies.addSpecialty(GTModHandler.getModItem(NewHorizonsCoreMod.ID, "item.EuropaStoneDust", 1, 0), 0.05f);
beeSpecies.addSpecialty(GTModHandler.getModItem(NewHorizonsCoreMod.ID, "item.EuropaIceDust", 1, 0), 0.05f);
Expand Down Expand Up @@ -1991,7 +1991,7 @@ public void accept(GTBeeDefinition dis) {
CALLISTO(GTBranchDefinition.PLANET, "Callisto", true, new Color(0x0f333d), new Color(0x0d84a5), beeSpecies -> {
beeSpecies.addProduct(GTBees.combs.getStackForType(CombType.JUPITER), 0.25f);
beeSpecies.addSpecialty(GTModHandler.getModItem(NewHorizonsCoreMod.ID, "item.CallistoStoneDust", 1, 0), 0.10f);
beeSpecies.addSpecialty(GTModHandler.getModItem(NewHorizonsCoreMod.ID, "item.CallistoIceDust", 1, 0), 0.10f);
beeSpecies.addSpecialty(Materials.CallistoIce.getDust(1), 0.10f);
beeSpecies.setHumidity(DAMP);
beeSpecies.setTemperature(ICY);
beeSpecies.setNocturnal();
Expand Down

0 comments on commit 00b6c43

Please sign in to comment.