- Added the Furnace Array (name pending), which takes health from nearby players to power adjacent furnaces. Not covered by standard medical insurance.
This commit is contained in:
parent
bf2fe1166e
commit
57c25f0064
5 changed files with 231 additions and 49 deletions
|
@ -0,0 +1,22 @@
|
|||
package WayofTime.bloodmagic.client.render.alchemyArray;
|
||||
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
public class LowAlchemyCircleRenderer extends SingleAlchemyCircleRenderer
|
||||
{
|
||||
public LowAlchemyCircleRenderer()
|
||||
{
|
||||
this(new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/SkeletonTurret1.png"));
|
||||
}
|
||||
|
||||
public LowAlchemyCircleRenderer(ResourceLocation arrayResource)
|
||||
{
|
||||
super(arrayResource);
|
||||
}
|
||||
|
||||
@Override
|
||||
public float getVerticalOffset(float craftTime)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue