diff options
author | miozune <miozune@gmail.com> | 2023-03-04 16:54:49 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-04 08:54:49 +0100 |
commit | fd2d8fb64916b5f0f70c801d760bb422bd8b203d (patch) | |
tree | e68a3608037eb0430a4b2dcf6b37251cad59469e /src/main/java/gtPlusPlus/xmod | |
parent | f8351450d16dab0a0224b39faa7013cf8f40588c (diff) | |
download | GT5-Unofficial-fd2d8fb64916b5f0f70c801d760bb422bd8b203d.tar.gz GT5-Unofficial-fd2d8fb64916b5f0f70c801d760bb422bd8b203d.tar.bz2 GT5-Unofficial-fd2d8fb64916b5f0f70c801d760bb422bd8b203d.zip |
Fix error with Dehydrator sound (#559)
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Dehydrator.java | 29 |
1 files changed, 3 insertions, 26 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Dehydrator.java b/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Dehydrator.java index 49235ae81c..c376abf4ed 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Dehydrator.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Dehydrator.java @@ -3,6 +3,7 @@ package gtPlusPlus.xmod.gregtech.api.metatileentity.implementations; import static gregtech.api.enums.Textures.BlockIcons.MACHINE_CASINGS; import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_PIPE_OUT; +import gregtech.api.enums.SoundResource; import gregtech.api.enums.Textures; import gregtech.api.enums.Textures.BlockIcons.CustomIcon; import gregtech.api.interfaces.ITexture; @@ -11,7 +12,6 @@ import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_BasicMachin import gregtech.api.objects.GT_RenderedTexture; import gregtech.api.render.TextureFactory; import gregtech.api.util.GTPP_Recipe; -import gregtech.api.util.GT_Recipe; import gtPlusPlus.core.lib.CORE; @SuppressWarnings("deprecation") @@ -46,37 +46,14 @@ public class GT_MetaTileEntity_Dehydrator extends GT_MetaTileEntity_BasicMachine 2, 5, "Dehydrator.png", - "UNBOXINATOR", + SoundResource.NONE, false, false, - 0, + SpecialEffects.NONE, "", null); } - public GT_MetaTileEntity_Dehydrator(String aName, int aTier, String[] aDescription, - GT_Recipe.GT_Recipe_Map aRecipes, int aTankCapacity, int aAmperage, ITexture[][][] aTextures, - String aGUIName, String aNEIName) { - super( - aName, - aTier, - aDescription, - aRecipes, - 2, - 9, - aTankCapacity, - aAmperage, - 2, - 5, - aTextures, - aGUIName, - aNEIName, - "", - false, - false, - 0); - } - @Override public String[] getDescription() { String[] S = super.getDescription(); |