Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Emily committed Sep 17, 2022
1 parent 2b85ea8 commit 837ff6a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions dev/copy_files.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
const fs = require('fs');

fs.rmSync('./dist/components/winapi/cpp', { force: true, recursive: true })
fs.cpSync('./src/components/winapi/cpp', './dist/components/winapi/cpp', { force: true, recursive: true });
fs.cpSync('./src/offsets.min.js', './dist/offsets.min.js', { force: true, recursive: true });
fs.cpSync('./src/components/winapi/cpp', './dist/components/winapi/cpp', { force: true, recursive: true });
1 change: 0 additions & 1 deletion scripts/orbwalker.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ function canAttack(attackDelay) { return lastAaTick + attackDelay < getTime() }
function canMove() { return (canPlayerMove) }

async function onTick(getSetting) {

const orbEnabled = getSetting('orb.enabled');
if (!orbEnabled) return;
const orbKey = getSetting('orb.key');
Expand Down

0 comments on commit 837ff6a

Please sign in to comment.