Skip to content

Commit

Permalink
correct fix for apotheosis -> apothic spawners
Browse files Browse the repository at this point in the history
  • Loading branch information
desht committed Jan 2, 2025
1 parent 6234719 commit 023bd36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class SpawnerAgitatorItem extends SemiblockItem {
public void appendHoverText(ItemStack pStack, TooltipContext context, List<Component> pTooltipComponents, TooltipFlag pIsAdvanced) {
super.appendHoverText(pStack, context, pTooltipComponents, pIsAdvanced);

if (ModList.get().isLoaded(ModIds.APOTHEOSIS)) {
if (ModList.get().isLoaded(ModIds.APOTHIC_SPAWNERS)) {
pTooltipComponents.add(xlate("gui.tooltip.item.pneumaticcraft.spawner_agitator.apotheosis").withStyle(ChatFormatting.GOLD));
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/desht/pneumaticcraft/lib/ModIds.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
public class ModIds {
// the mods we integrate with
public static final String AE2 = "appliedenergistics2";
public static final String APOTHEOSIS = "apotheosis";
public static final String APOTHIC_SPAWNERS = "apothic_spawners";
public static final String COMPUTERCRAFT = "computercraft";
public static final String TOP = "theoneprobe";
public static final String JEI = "jei";
Expand Down

0 comments on commit 023bd36

Please sign in to comment.