[Fix] Reduced Radius for Eternal Portal Search
This commit is contained in:
parent
8b845a0a8f
commit
1356a91e77
5 changed files with 102 additions and 54 deletions
|
@ -39,8 +39,12 @@ public class StoneMaterial {
|
|||
public final Block furnace;
|
||||
public final Block flowerPot;
|
||||
|
||||
public static FabricBlockSettings createMaterial(MaterialColor color) {
|
||||
return FabricBlockSettings.copyOf(Blocks.END_STONE).mapColor(color);
|
||||
}
|
||||
|
||||
public StoneMaterial(String name, MaterialColor color) {
|
||||
FabricBlockSettings material = FabricBlockSettings.copyOf(Blocks.END_STONE).mapColor(color);
|
||||
FabricBlockSettings material = createMaterial(color);
|
||||
|
||||
stone = EndBlocks.registerBlock(name, new BaseBlock(material));
|
||||
polished = EndBlocks.registerBlock(name + "_polished", new BaseBlock(material));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue