diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2024-11-23 22:00:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-23 14:00:28 +0000 |
commit | d1cb09ae0925d6e67784ab541da2ec90f4671153 (patch) | |
tree | a2867a83d5a4915afdc282ca4cf522557f3b1245 /src/main/java/gregtech/api/metatileentity/implementations | |
parent | c7cb999dfb09b3b6c04d1eb13e30120ee7c7b76e (diff) | |
download | GT5-Unofficial-d1cb09ae0925d6e67784ab541da2ec90f4671153.tar.gz GT5-Unofficial-d1cb09ae0925d6e67784ab541da2ec90f4671153.tar.bz2 GT5-Unofficial-d1cb09ae0925d6e67784ab541da2ec90f4671153.zip |
fix turbine overlay not being shown in NEI preview (#3530)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gregtech/api/metatileentity/implementations')
-rw-r--r-- | src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java b/src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java index f8babfb7ec..1958b4aa3f 100644 --- a/src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java +++ b/src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java @@ -1008,6 +1008,8 @@ public abstract class MTEMultiBlockBase extends MetaTileEntity /** * Gets the pollution produced per second by this multiblock, default to 0. Override this with its actual value in * the code of the multiblock. + * + * This returns the unmodified raw pollution value, not the one after muffler discounts. */ public int getPollutionPerSecond(ItemStack aStack) { return 0; |