diff options
author | Ninjune <enderknight537@gmail.com> | 2023-01-14 18:51:28 -0600 |
---|---|---|
committer | Ninjune <enderknight537@gmail.com> | 2023-01-14 18:51:28 -0600 |
commit | 8fa7fe39d9edbdd8b00ec238c4e40b6ecd0808cc (patch) | |
tree | 04000ede45a86ebfb76b5b01ad4a169be8234470 /commands/drawLine.js | |
parent | 329dccf50ed5e9f87531580f679522238b6a019b (diff) | |
download | coleweight-8fa7fe39d9edbdd8b00ec238c4e40b6ecd0808cc.tar.gz coleweight-8fa7fe39d9edbdd8b00ec238c4e40b6ecd0808cc.tar.bz2 coleweight-8fa7fe39d9edbdd8b00ec238c4e40b6ecd0808cc.zip |
Diffstat (limited to 'commands/drawLine.js')
-rw-r--r-- | commands/drawLine.js | 3 |
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 |