Fixed Survives On handling

This commit is contained in:
Frank 2023-06-14 13:14:13 +02:00
parent 7c61b8c92e
commit afc3d1e795
27 changed files with 126 additions and 32 deletions

View file

@ -54,4 +54,9 @@ public class BoluxMushroomBlock extends EndPlantBlock implements SurvivesOnRutis
public List<ItemStack> getDrops(BlockState state, LootParams.Builder builder) {
return Lists.newArrayList(new ItemStack(this));
}
@Override
public boolean isTerrain(BlockState state) {
return SurvivesOnRutiscus.super.isTerrain(state);
}
}