diff options
Diffstat (limited to 'src/main/java/gregtech/api/util')
-rw-r--r-- | src/main/java/gregtech/api/util/GT_Utility.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/gregtech/api/util/GT_Utility.java b/src/main/java/gregtech/api/util/GT_Utility.java index 577364c0f7..4dd99e3ff7 100644 --- a/src/main/java/gregtech/api/util/GT_Utility.java +++ b/src/main/java/gregtech/api/util/GT_Utility.java @@ -2165,9 +2165,9 @@ public class GT_Utility { if (GregTech_API.sMultiThreadedSounds) new Thread( new GT_Runnable_Sound( GT.getThePlayer().worldObj, - MathHelper.floor_double(aX), - MathHelper.floor_double(aY), - MathHelper.floor_double(aZ), + aX, + aY, + aZ, aTimeUntilNextSound, aSoundResourceLocation, aSoundStrength, @@ -2175,9 +2175,9 @@ public class GT_Utility { "Sound Effect").start(); else new GT_Runnable_Sound( GT.getThePlayer().worldObj, - MathHelper.floor_double(aX), - MathHelper.floor_double(aY), - MathHelper.floor_double(aZ), + aX, + aY, + aZ, aTimeUntilNextSound, aSoundResourceLocation, aSoundStrength, |