mirror of
https://github.com/sekwah41/Advanced-Portals.git
synced 2024-11-24 19:45:53 +01:00
fix: Error in position checks for portal creation
This commit is contained in:
parent
787c1d09b4
commit
75d2be30fe
@ -519,12 +519,12 @@ public class AdvancedPortalsCommand implements CommandExecutor, TabCompleter {
|
||||
+ " You need to have two points selected to make a portal!");
|
||||
return false;
|
||||
}
|
||||
if (player.getMetadata("Pos1World").get(0).asString()
|
||||
if (!player.getMetadata("Pos1World").get(0).asString()
|
||||
.equals(player.getMetadata("Pos2World").get(0).asString())
|
||||
&& player.getMetadata("Pos1World").get(0).asString()
|
||||
|| !player.getMetadata("Pos1World").get(0).asString()
|
||||
.equals(player.getLocation().getWorld().getName())) {
|
||||
player.sendMessage(PluginMessages.customPrefixFail
|
||||
+ " The points you have selected need to be in the same world!");
|
||||
+ " The points you have selected need to be in the same world as each other and yourself!");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user