aboutsummaryrefslogtreecommitdiff
path: root/commands/drawLine.js
diff options
context:
space:
mode:
authorNinjune <enderknight537@gmail.com>2023-01-14 18:51:28 -0600
committerNinjune <enderknight537@gmail.com>2023-01-14 18:51:28 -0600
commit8fa7fe39d9edbdd8b00ec238c4e40b6ecd0808cc (patch)
tree04000ede45a86ebfb76b5b01ad4a169be8234470 /commands/drawLine.js
parent329dccf50ed5e9f87531580f679522238b6a019b (diff)
downloadcoleweight-main.tar.gz
coleweight-main.tar.bz2
coleweight-main.zip
v1.8.7HEADmain
Diffstat (limited to 'commands/drawLine.js')
-rw-r--r--commands/drawLine.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/drawLine.js b/commands/drawLine.js
index 7fd9742..1374dea 100644
--- a/commands/drawLine.js
+++ b/commands/drawLine.js
@@ -1,5 +1,5 @@
import constants from "../util/constants"
-import { trace } from "../util/renderUtil"
+import { trace, drawEspBox } from "../util/renderUtil"
const PREFIX = constants.PREFIX
let x = 0,
@@ -39,4 +39,5 @@ register("renderWorld", () => {
if(x == 0 && y == 0 && z == 0) return
trace(x, y, z, 0, 0, 1, 0.86)
+ drawEspBox(x, y, z, 0, 0, 1, 0.86) // y no work
}) \ No newline at end of file