Mekanism-tilera-Edition/common/mekanism/client/sound/PlayerSound.java
Victor Robertson e5a6eadc45 Fix indentation and remove trailing whitespace
This patch provides common/mekanism/*.java with standardized
indentation (tabs) and also removes trailing whitespace.
2014-03-07 19:20:35 -06:00

49 lines
830 B
Java

package mekanism.client.sound;
import mekanism.api.Pos3D;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
public abstract class PlayerSound extends Sound
{
/** The TileEntity this sound is associated with. */
public EntityPlayer player;
public PlayerSound(String id, String sound, EntityPlayer entity)
{
super(id, sound, entity, new Pos3D(entity));
player = entity;
}
@Override
public float getMultiplier()
{
return super.getMultiplier()*0.3F;
}
@Override
public boolean update(World world)
{
if(player.isDead)
{
return false;
}
else if(player.worldObj != world)
{
return false;
}
else if(!world.loadedEntityList.contains(player))
{
return false;
}
return true;
}
@Override
public Pos3D getLocation()
{
return new Pos3D(player);
}
}