diff options
author | Mary <33456283+FourIsTheNumber@users.noreply.github.com> | 2024-09-17 11:04:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-17 15:04:23 +0000 |
commit | a306b633d206c30db81f375da4927d0d0792aa8b (patch) | |
tree | d8fe1511ba582633425b689ab0a618d83ea29572 /src/main/java/gregtech/common/tileentities | |
parent | b47d44ce6386984345b5601da732775861f8f1c3 (diff) | |
download | GT5-Unofficial-a306b633d206c30db81f375da4927d0d0792aa8b.tar.gz GT5-Unofficial-a306b633d206c30db81f375da4927d0d0792aa8b.tar.bz2 GT5-Unofficial-a306b633d206c30db81f375da4927d0d0792aa8b.zip |
Remove waila black hole info (#3215)
Diffstat (limited to 'src/main/java/gregtech/common/tileentities')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/compressor/MTEBlackHoleCompressor.java | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/compressor/MTEBlackHoleCompressor.java b/src/main/java/gregtech/common/tileentities/machines/multi/compressor/MTEBlackHoleCompressor.java index f8e223d6f5..39538bfc7f 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/compressor/MTEBlackHoleCompressor.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/compressor/MTEBlackHoleCompressor.java @@ -273,7 +273,7 @@ public class MTEBlackHoleCompressor extends MTEExtendedPowerMultiBlockBase<MTEBl EnumChatFormatting.LIGHT_PURPLE + "No longer requires heat management to perform superdense compression") .addInfo(EnumChatFormatting.LIGHT_PURPLE + "Can create advanced singularities!") - .addInfo(EnumChatFormatting.BLUE + "Use circuit 20 for compressor and 21 for Neutronium Compressor") + .addInfo(EnumChatFormatting.BLUE + "Use circuit 20 for Compressor and 21 for Neutronium Compressor") .addSeparator() .addInfo( "Insert a " + EnumChatFormatting.WHITE @@ -406,8 +406,6 @@ public class MTEBlackHoleCompressor extends MTEExtendedPowerMultiBlockBase<MTEBl public void getWailaNBTData(EntityPlayerMP player, TileEntity tile, NBTTagCompound tag, World world, int x, int y, int z) { super.getWailaNBTData(player, tile, tag, world, x, y, z); - tag.setByte("blackHoleStatus", blackHoleStatus); - tag.setFloat("blackHoleStability", blackHoleStability); tag.setInteger("parallels", getMaxParallelRecipes()); } @@ -420,18 +418,6 @@ public class MTEBlackHoleCompressor extends MTEExtendedPowerMultiBlockBase<MTEBl StatCollector.translateToLocal("GT5U.multiblock.parallelism") + ": " + EnumChatFormatting.WHITE + tag.getInteger("parallels")); - if (tag.getByte("blackHoleStatus") != 1) { - if (tag.getFloat("blackHoleStability") > 0) { - currentTip.add(EnumChatFormatting.DARK_PURPLE + "Black Hole Active"); - currentTip.add( - EnumChatFormatting.DARK_PURPLE + " Stability: " - + EnumChatFormatting.BOLD - + Math.round(tag.getFloat("blackHoleStability")) - + "%"); - } else { - currentTip.add(EnumChatFormatting.RED + "BLACK HOLE UNSTABLE"); - } - } else currentTip.add(EnumChatFormatting.DARK_PURPLE + "Black Hole Offline"); } private int getModeFromCircuit(ItemStack[] t) { |