Merge boy0001/FastAsyncWorldEdit

This commit is contained in:
Jesse Boyd
2018-09-14 02:42:55 +10:00
parent e3172e08b8
commit 8ed67f66ad
9 changed files with 109 additions and 47 deletions

View File

@ -339,11 +339,6 @@ public class Location extends Vector {
@Override
public int hashCode() {
int result = extent.hashCode();
result = 31 * result + this.hashCode();
result = 31 * result + Float.floatToIntBits(this.pitch);
result = 31 * result + Float.floatToIntBits(this.yaw);
return result;
return super.hashCode();
}
}