···11+# Changelog
22+33+All notable changes to this project will be documented in this file.
44+55+## Next Release
66+77+### Fixed
88+- (Map Editor) Fixed crash when fusing vertices
+27
src/main/java/common/Vector3f.java
···146146 {
147147 return "(" + x + ", " + y + ", " + z + ")";
148148 }
149149+150150+ @Override
151151+ public int hashCode()
152152+ {
153153+ final int prime = 31;
154154+ int result = 1;
155155+ result = prime * result + Float.floatToIntBits(x);
156156+ result = prime * result + Float.floatToIntBits(y);
157157+ result = prime * result + Float.floatToIntBits(z);
158158+ return result;
159159+ }
160160+161161+ @Override
162162+ public boolean equals(Object obj)
163163+ {
164164+ if (this == obj)
165165+ return true;
166166+167167+ if (!(obj instanceof Vector3f) || obj == null)
168168+ return false;
169169+170170+ Vector3f other = (Vector3f) obj;
171171+ if (x == other.x && y == other.y && z == other.z)
172172+ return true;
173173+174174+ return false;
175175+ }
149176}