This commit is contained in:
paulevsGitch 2020-11-08 01:35:16 +03:00
parent 452fbf0497
commit 76804a4f09
4 changed files with 252 additions and 22 deletions

View file

@ -1,5 +1,8 @@
package ru.betterend.blocks.entities;
import net.minecraft.block.BlockState;
import net.minecraft.nbt.CompoundTag;
import ru.betterend.rituals.InfusionRitual;
public class InfusionPedestalEntity extends PedestalBlockEntity {
@ -9,5 +12,14 @@ public class InfusionPedestalEntity extends PedestalBlockEntity {
public boolean hasRitual() {
return this.activeRitual != null;
}
@Override
public void fromTag(BlockState state, CompoundTag tag) {
super.fromTag(state, tag);
}
@Override
public CompoundTag toTag(CompoundTag tag) {
return super.toTag(tag);
}
}