From 53fb12ef7d1774fc07a6e301d220ac8261a2547c Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Wed, 24 Aug 2022 17:09:40 +0800 Subject: fix position (changed in uploaded) --- features/specialMining/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'features') diff --git a/features/specialMining/index.js b/features/specialMining/index.js index 0d93038..796d29a 100644 --- a/features/specialMining/index.js +++ b/features/specialMining/index.js @@ -141,7 +141,7 @@ class PowderAndScatha extends Feature { let hovered = (x1 < Renderer.screen.getWidth() / 2 && x2 > Renderer.screen.getWidth() / 2 && y1 < Renderer.screen.getHeight() / 2 && y2 > Renderer.screen.getHeight() / 2) - drawFilledBox(pos[1], pos[2], pos[3], 0.1, 0.1, hovered ? 0 : 255, hovered ? 255 : 0, 0, 1, false) + drawFilledBox(pos[1], pos[2] - 0.05, pos[3], 0.1, 0.1, hovered ? 0 : 255, hovered ? 255 : 0, 0, 1, false) if (Date.now() - pos[0] > 5000) { del.push(key) -- cgit