Skip to content

Commit

Permalink
Fix issue #2
Browse files Browse the repository at this point in the history
HTMonkeyG authored Oct 8, 2024
1 parent c9296bb commit 2910efb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ var NBT = function () {
func[2] = g.bind(func, "Int16", 2);
func["Uint16"] = g.bind(func, "Uint16", 2);
func[3] = g.bind(func, "Int32", 4);
func[4] = function () { var a = this[3](), b = this[3](); return isBedrock ? { low: a, high: b } : { low: ab, high: a } }.bind(func);
func[4] = function () { var a = this[3](), b = this[3](); return isBedrock ? { low: a, high: b } : { low: b, high: a } }.bind(func);
func[5] = g.bind(func, "Float32", 4);
func[6] = g.bind(func, "Float64", 8);
func[7] = function () {
@@ -216,4 +216,4 @@ var NBT = function () {
}
}();

module ? (module.exports = NBT) : (window.NBT = NBT);
module ? (module.exports = NBT) : (window.NBT = NBT);

0 comments on commit 2910efb

Please sign in to comment.