Fixed small entity bugs, move classes to correct package
This commit is contained in:
parent
056a23beb9
commit
3cd71e300d
5 changed files with 15 additions and 3 deletions
15
src/main/java/ru/betterend/blocks/FilaluxBlock.java
Normal file
15
src/main/java/ru/betterend/blocks/FilaluxBlock.java
Normal file
|
@ -0,0 +1,15 @@
|
|||
package ru.betterend.blocks;
|
||||
|
||||
import net.minecraft.world.level.block.state.BlockBehaviour;
|
||||
import ru.betterend.blocks.basis.VineBlock;
|
||||
|
||||
public class FilaluxBlock extends VineBlock {
|
||||
public FilaluxBlock() {
|
||||
super(15, true);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockBehaviour.OffsetType getOffsetType() {
|
||||
return BlockBehaviour.OffsetType.NONE;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue