diff --git a/MCGalaxy/util/Math/Vectors.cs b/MCGalaxy/util/Math/Vectors.cs index 871ab9123..9ff6e6d66 100644 --- a/MCGalaxy/util/Math/Vectors.cs +++ b/MCGalaxy/util/Math/Vectors.cs @@ -215,7 +215,7 @@ public static Vec3F32 Normalise(Vec3F32 a) { } public static Vec3F32 operator * (Vec3F32 a, float b) { - return new Vec3F32(a.X * b, a.Y * b, a.Y * b); + return new Vec3F32(a.X * b, a.Y * b, a.Z * b); } public static Vec3F32 operator - (Vec3F32 a, Vec3F32 b) {