aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/threads/GT_Runnable_Sound.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/api/threads/GT_Runnable_Sound.java')
-rw-r--r--src/main/java/gregtech/api/threads/GT_Runnable_Sound.java38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/main/java/gregtech/api/threads/GT_Runnable_Sound.java b/src/main/java/gregtech/api/threads/GT_Runnable_Sound.java
index dfee28cf47..b3c04bc233 100644
--- a/src/main/java/gregtech/api/threads/GT_Runnable_Sound.java
+++ b/src/main/java/gregtech/api/threads/GT_Runnable_Sound.java
@@ -15,7 +15,7 @@ public class GT_Runnable_Sound implements Runnable {
private final float mSoundStrength, mSoundModulation;
public GT_Runnable_Sound(World aWorld, double aX, double aY, double aZ, int aTimeUntilNextSound,
- ResourceLocation aSoundResourceLocation, float aSoundStrength, float aSoundModulation) {
+ ResourceLocation aSoundResourceLocation, float aSoundStrength, float aSoundModulation) {
mWorld = aWorld;
mX = aX;
mY = aY;
@@ -30,16 +30,16 @@ public class GT_Runnable_Sound implements Runnable {
* @deprecated Use {@link #GT_Runnable_Sound(World, double, double, double, int, ResourceLocation, float, float)}
*/
public GT_Runnable_Sound(World aWorld, int aX, int aY, int aZ, int aTimeUntilNextSound,
- ResourceLocation aSoundResourceLocation, float aSoundStrength, float aSoundModulation) {
+ ResourceLocation aSoundResourceLocation, float aSoundStrength, float aSoundModulation) {
this(
- aWorld,
- (double) aX + 0.5D,
- (double) aY + 0.5D,
- (double) aZ + 0.5D,
- aTimeUntilNextSound,
- aSoundResourceLocation,
- aSoundStrength,
- aSoundModulation);
+ aWorld,
+ (double) aX + 0.5D,
+ (double) aY + 0.5D,
+ (double) aZ + 0.5D,
+ aTimeUntilNextSound,
+ aSoundResourceLocation,
+ aSoundStrength,
+ aSoundModulation);
}
/**
@@ -47,16 +47,16 @@ public class GT_Runnable_Sound implements Runnable {
*/
@Deprecated
public GT_Runnable_Sound(World aWorld, int aX, int aY, int aZ, int aTimeUntilNextSound, String aSoundName,
- float aSoundStrength, float aSoundModulation) {
+ float aSoundStrength, float aSoundModulation) {
this(
- aWorld,
- (double) aX + 0.5D,
- (double) aY + 0.5D,
- (double) aZ + 0.5D,
- aTimeUntilNextSound,
- new ResourceLocation(aSoundName),
- aSoundStrength,
- aSoundModulation);
+ aWorld,
+ (double) aX + 0.5D,
+ (double) aY + 0.5D,
+ (double) aZ + 0.5D,
+ aTimeUntilNextSound,
+ new ResourceLocation(aSoundName),
+ aSoundStrength,
+ aSoundModulation);
}
@Override