Skip to content

Commit

Permalink
fix Waila tooltip for Endergy Energy Conduits (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pilzinsel64 authored Feb 8, 2023
1 parent 628af06 commit e41827f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/crazypants/enderio/waila/WailaCompat.java
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ private void getWailaBodyConduitBundle(ItemStack itemStack, List<String> current
return;
}

if (itemStack.getItem() == EnderIO.itemPowerConduit) {
if (itemStack.getItem() == EnderIO.itemPowerConduit || itemStack.getItem() == EnderIO.itemPowerConduitEndergy) {
NBTTagCompound nbtRoot = _accessor.getNBTData();
if (nbtRoot.hasKey("storedEnergyRF")) {
int stored = nbtRoot.getInteger("storedEnergyRF");
Expand Down

0 comments on commit e41827f

Please sign in to comment.