Skip to content

Commit

Permalink
+ fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Leref committed Jun 1, 2024
1 parent 3469c92 commit 55639e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/AoiClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const {Command} = require("./Commands");
const {FunctionManager} = require("./Functions");

const [major] = process.version.replace("v", "").split(".");
if (isNaN(Number(major)) || Number(major) < 25) {
if (isNaN(Number(major)) || Number(major) < 20) {
throw new TypeError("node.js version 20 or higher is required to run aoi.js.");
}

Expand Down

0 comments on commit 55639e8

Please sign in to comment.