aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-01-12 19:04:06 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-01-12 19:04:06 +0000
commitf2638119215ec2c6a507087f0399d8c8cd193647 (patch)
tree0d0ea7eedd683ac5b3014caa92bb2089b3b232a8 /src/Java/gtPlusPlus/xmod/gregtech/common
parentd9368e021ee529349edf2b33550099f1221cc5b8 (diff)
downloadGT5-Unofficial-f2638119215ec2c6a507087f0399d8c8cd193647.tar.gz
GT5-Unofficial-f2638119215ec2c6a507087f0399d8c8cd193647.tar.bz2
GT5-Unofficial-f2638119215ec2c6a507087f0399d8c8cd193647.zip
% Sound Tweaks to Adv. Imp. compressor and Naq Reactor.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/advanced/GregtechMetaTileEntity_Adv_Implosion.java5
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_LargeNaqReactor.java5
2 files changed, 10 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/advanced/GregtechMetaTileEntity_Adv_Implosion.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/advanced/GregtechMetaTileEntity_Adv_Implosion.java
index 8d18aa434f..8abf506e55 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/advanced/GregtechMetaTileEntity_Adv_Implosion.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/advanced/GregtechMetaTileEntity_Adv_Implosion.java
@@ -102,6 +102,11 @@ extends GregtechMeta_MultiBlockBase {
if (aIndex == 20) {
GT_Utility.doSoundAtClient((String) GregTech_API.sSoundList.get(Integer.valueOf(5)), 10, 1.0F, aX, aY, aZ);
}
+ }
+
+ @Override
+ public String getSound() {
+ return (String) GregTech_API.sSoundList.get(Integer.valueOf(5));
}
public boolean checkMultiblock(IGregTechTileEntity aBaseMetaTileEntity, ItemStack aStack) {
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_LargeNaqReactor.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_LargeNaqReactor.java
index eeb1163db8..89bb00f64d 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_LargeNaqReactor.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_LargeNaqReactor.java
@@ -135,6 +135,11 @@ public class GregtechMTE_LargeNaqReactor extends GregtechMeta_MultiBlockBase {
aZ);
}
}
+
+ @Override
+ public String getSound() {
+ return (String) GregTech_API.sSoundList.get(Integer.valueOf(212));
+ }
private Block getCasing(int casingID) {
if (casingID == 1) {