[Fix] Mining Behaviour is missing (#224)
This commit is contained in:
parent
55e4af0f9c
commit
10732633b1
25 changed files with 106 additions and 47 deletions
|
@ -1,5 +1,8 @@
|
|||
package org.betterx.betterend.blocks;
|
||||
|
||||
import org.betterx.bclib.behaviours.interfaces.BehaviourMetal;
|
||||
import org.betterx.bclib.behaviours.interfaces.BehaviourStone;
|
||||
import org.betterx.bclib.behaviours.interfaces.BehaviourWood;
|
||||
import org.betterx.betterend.BetterEnd;
|
||||
import org.betterx.betterend.blocks.basis.PedestalBlock;
|
||||
|
||||
|
@ -11,9 +14,9 @@ import com.google.common.collect.Maps;
|
|||
|
||||
import java.util.Map;
|
||||
|
||||
public class EndPedestal extends PedestalBlock {
|
||||
public abstract class EndPedestal extends PedestalBlock {
|
||||
|
||||
public EndPedestal(Block parent) {
|
||||
protected EndPedestal(Block parent) {
|
||||
super(parent);
|
||||
}
|
||||
|
||||
|
@ -29,4 +32,25 @@ public class EndPedestal extends PedestalBlock {
|
|||
textures.put("%bottom%", name + "_polished");
|
||||
return textures;
|
||||
}
|
||||
|
||||
public static class Stone extends EndPedestal implements BehaviourStone {
|
||||
public Stone(Block parent) {
|
||||
super(parent);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static class Wood extends EndPedestal implements BehaviourWood {
|
||||
public Wood(Block parent) {
|
||||
super(parent);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static class Metal extends EndPedestal implements BehaviourMetal {
|
||||
public Metal(Block parent) {
|
||||
super(parent);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue