We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e50c7d commit d4e157eCopy full SHA for d4e157e
2 files changed
CHANGELOG.md
@@ -1,2 +1,2 @@
1
-# Changelog - 0.3.3
2
-- Fixing silly negated equality issue in `quaternion`
+# Changelog - 0.3.4
+- Fixing error in `quaternion.tostring`
datapack/data/computercraft/lua/rom/apis/quaternion.lua
@@ -336,7 +336,7 @@ local quaternion = {
336
else
337
str = str .. " - "
338
end
339
- return str .. tostring(math.abs(self.v.y)) .. "k"
+ return str .. tostring(math.abs(self.v.z)) .. "k"
340
end,
341
342
--- Determines if the given quaternions are equal.
0 commit comments