summaryrefslogtreecommitdiffstats
path: root/src/Vector.hpp
diff options
context:
space:
mode:
authorLaG1924 <12997935+LaG1924@users.noreply.github.com>2018-03-13 15:30:05 +0100
committerLaG1924 <12997935+LaG1924@users.noreply.github.com>2018-03-13 16:41:49 +0100
commitcf647ebf504eb523d822fa79622cb59d009680da (patch)
treeefaa792f312bb18db07c94d1460801209279ed3f /src/Vector.hpp
parentFixed holes when block on section border destroyed (diff)
downloadAltCraft-cf647ebf504eb523d822fa79622cb59d009680da.tar
AltCraft-cf647ebf504eb523d822fa79622cb59d009680da.tar.gz
AltCraft-cf647ebf504eb523d822fa79622cb59d009680da.tar.bz2
AltCraft-cf647ebf504eb523d822fa79622cb59d009680da.tar.lz
AltCraft-cf647ebf504eb523d822fa79622cb59d009680da.tar.xz
AltCraft-cf647ebf504eb523d822fa79622cb59d009680da.tar.zst
AltCraft-cf647ebf504eb523d822fa79622cb59d009680da.zip
Diffstat (limited to 'src/Vector.hpp')
-rw-r--r--src/Vector.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Vector.hpp b/src/Vector.hpp
index 03b1ec4..a067ea0 100644
--- a/src/Vector.hpp
+++ b/src/Vector.hpp
@@ -132,7 +132,7 @@ struct Vector3 {
friend std::ostream &operator<<(std::ostream &os, const Vector3 &vector3) {
- os << vector3.x << ", " << vector3.y << ", " << vector3.z;
+ os << vector3.x << " " << vector3.y << " " << vector3.z;
return os;
}
};