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