mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
37 lines
759 B
Java
37 lines
759 B
Java
package com.hbm.sound;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
import com.hbm.tileentity.TileEntityMachineMiningDrill;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
public class SoundLoopMiner extends SoundLoopMachine {
|
|
|
|
public static List<SoundLoopMiner> list = new ArrayList<SoundLoopMiner>();
|
|
|
|
public SoundLoopMiner(ResourceLocation path, TileEntity te) {
|
|
super(path, te);
|
|
list.add(this);
|
|
}
|
|
|
|
@Override
|
|
public void update() {
|
|
super.update();
|
|
|
|
if(te instanceof TileEntityMachineMiningDrill) {
|
|
TileEntityMachineMiningDrill drill = (TileEntityMachineMiningDrill)te;
|
|
|
|
if(drill.torque <= 0.5F)
|
|
this.donePlaying = true;
|
|
}
|
|
}
|
|
|
|
public TileEntity getTE() {
|
|
return te;
|
|
}
|
|
|
|
}
|