Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-26 02:50:06 +01:00
Fix ForgeWorld's equals() being very broken.
Dieser Commit ist enthalten in:
Ursprung
4d9b3681d7
Commit
527a8dd49b
@ -359,7 +359,7 @@ public class ForgeWorld extends AbstractWorld {
|
|||||||
} else if ((o instanceof ForgeWorld)) {
|
} else if ((o instanceof ForgeWorld)) {
|
||||||
ForgeWorld other = ((ForgeWorld) o);
|
ForgeWorld other = ((ForgeWorld) o);
|
||||||
World otherWorld = other.worldRef.get();
|
World otherWorld = other.worldRef.get();
|
||||||
World thisWorld = other.worldRef.get();
|
World thisWorld = worldRef.get();
|
||||||
return otherWorld != null && thisWorld != null && otherWorld.equals(thisWorld);
|
return otherWorld != null && thisWorld != null && otherWorld.equals(thisWorld);
|
||||||
} else if (o instanceof com.sk89q.worldedit.world.World) {
|
} else if (o instanceof com.sk89q.worldedit.world.World) {
|
||||||
return ((com.sk89q.worldedit.world.World) o).getName().equals(getName());
|
return ((com.sk89q.worldedit.world.World) o).getName().equals(getName());
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren