Fix creating nether portals.

This commit is contained in:
LexManos 2020-08-14 12:04:17 -07:00
parent e1efab0452
commit 680c4062f4
1 changed files with 1 additions and 1 deletions

View File

@ -675,7 +675,7 @@ public class ForgeEventFactory
public static Optional<PortalSize> onTrySpawnPortal(IWorld world, BlockPos pos, Optional<PortalSize> size)
{
if (!size.isPresent()) return size;
return MinecraftForge.EVENT_BUS.post(new BlockEvent.PortalSpawnEvent(world, pos, world.getBlockState(pos), size.get())) ? size : Optional.empty();
return !MinecraftForge.EVENT_BUS.post(new BlockEvent.PortalSpawnEvent(world, pos, world.getBlockState(pos), size.get())) ? size : Optional.empty();
}
public static int onEnchantmentLevelSet(World world, BlockPos pos, int enchantRow, int power, ItemStack itemStack, int level)