Lucernia & Filalux prototypes

This commit is contained in:
paulevsGitch 2021-03-13 17:32:47 +03:00
parent 24280e7649
commit b66f074fdb
18 changed files with 86 additions and 0 deletions

View file

@ -0,0 +1,15 @@
package ru.betterend.registry;
import net.minecraft.block.AbstractBlock;
import ru.betterend.blocks.basis.VineBlock;
public class FilaluxBlock extends VineBlock {
public FilaluxBlock() {
super(15, true);
}
@Override
public AbstractBlock.OffsetType getOffsetType() {
return AbstractBlock.OffsetType.NONE;
}
}