mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 11:38:29 +01:00
Added hashCode and equals to CraftWorld
This commit is contained in:
parent
1195944c90
commit
7e005474b6
@ -870,4 +870,23 @@ public class CraftWorld implements World {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return getUID().hashCode();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (obj == null) {
|
||||
return false;
|
||||
}
|
||||
if (getClass() != obj.getClass()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
final CraftWorld other = (CraftWorld) obj;
|
||||
|
||||
return this.getUID() == other.getUID();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user