diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-24 17:09:40 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-24 17:09:40 +0800 |
commit | 53fb12ef7d1774fc07a6e301d220ac8261a2547c (patch) | |
tree | 3fafc22ccc3e4cd19443d844f6c8077dedfe1e83 | |
parent | 3437df7688e6811bf04ae5daa97fd5b802f317c4 (diff) | |
download | SoopyV2-53fb12ef7d1774fc07a6e301d220ac8261a2547c.tar.gz SoopyV2-53fb12ef7d1774fc07a6e301d220ac8261a2547c.tar.bz2 SoopyV2-53fb12ef7d1774fc07a6e301d220ac8261a2547c.zip |
fix position (changed in uploaded)
-rw-r--r-- | features/specialMining/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
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) |