Fix being unable to plant nether wart (#5572)

This commit is contained in:
Ben Staddon 2019-03-14 05:37:37 +00:00 committed by LexManos
parent d0c7a496f7
commit 329e04b068
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@
+
+ @Override
+ public net.minecraftforge.common.EnumPlantType getPlantType(net.minecraft.world.IBlockReader world, BlockPos pos) {
+ return net.minecraftforge.common.EnumPlantType.Crop;
+ return this.field_195978_a.func_177230_c() == net.minecraft.init.Blocks.field_150388_bm ? net.minecraftforge.common.EnumPlantType.Nether : net.minecraftforge.common.EnumPlantType.Crop;
+ }
+
+ @Override