Skip to content

Commit abdf76d

Browse files
Fixes Rift Signature Logic with only one-sided teleports
1 parent 99bb633 commit abdf76d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/dimdev/dimdoors/shared/items/ItemRiftSignature.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos
7676
World sourceWorld = source.getLocation().getWorld();
7777
sourceWorld.setBlockState(source.location.getPos(), ModBlocks.RIFT.getDefaultState());
7878
TileEntityRift rift2 = (TileEntityRift) source.getLocation().getTileEntity();
79-
rift2.setSingleDestination(new GlobalDestination(source.getLocation()));
79+
rift2.setSingleDestination(new GlobalDestination(rift1.getLocation()));
8080
rift2.setRotation(source.getYaw(), 0);
8181
rift2.register();
8282

0 commit comments

Comments
 (0)