|
17 | 17 | import net.minecraft.world.World;
|
18 | 18 | import org.dimdev.ddutils.RotatedLocation;
|
19 | 19 | import org.dimdev.dimdoors.shared.blocks.ModBlocks;
|
| 20 | +import org.dimdev.dimdoors.shared.rifts.DestinationMaker; |
20 | 21 | import org.dimdev.dimdoors.shared.rifts.destinations.GlobalDestination;
|
21 | 22 | import org.dimdev.dimdoors.shared.sound.ModSounds;
|
22 | 23 | import org.dimdev.dimdoors.shared.tileentities.TileEntityFloatingRift;
|
@@ -70,15 +71,15 @@ public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos
|
70 | 71 | World sourceWorld = target.getLocation().getWorld();
|
71 | 72 | sourceWorld.setBlockState(target.getLocation().getPos(), ModBlocks.RIFT.getDefaultState());
|
72 | 73 | TileEntityFloatingRift rift1 = (TileEntityFloatingRift) target.getLocation().getTileEntity();
|
73 |
| - rift1.setDestination(new GlobalDestination(new Location(world, pos))); |
| 74 | + rift1.setDestination(DestinationMaker.relativeIfPossible(target.getLocation(), new Location(world, pos))); |
74 | 75 | rift1.setTeleportTargetRotation(target.getYaw(), 0); // setting pitch to 0 because player is always facing down to place rift
|
75 | 76 | rift1.register();
|
76 | 77 | }
|
77 | 78 |
|
78 | 79 | // Place a rift at the target point
|
79 | 80 | world.setBlockState(pos, ModBlocks.RIFT.getDefaultState());
|
80 | 81 | TileEntityFloatingRift rift2 = (TileEntityFloatingRift) world.getTileEntity(pos);
|
81 |
| - rift2.setDestination(new GlobalDestination(target.getLocation())); |
| 82 | + rift2.setDestination(DestinationMaker.relativeIfPossible(new Location(world, pos), target.getLocation())); |
82 | 83 | rift2.setTeleportTargetRotation(player.rotationYaw, 0);
|
83 | 84 | rift2.register();
|
84 | 85 |
|
|
0 commit comments