Skip to content

Commit

Permalink
Update semver check.
Browse files Browse the repository at this point in the history
  • Loading branch information
PhlexPlexico committed Jul 1, 2023
1 parent fd35631 commit 45a312d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utility/serverrcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class ServerRcon {

if (get5Status.includes("Unknown command")) {
let get5Version = await this.getGet5Version();
if (get5Version.includes("0.14")) {
if (compare(get5Version, "0.13.1", ">=")) {
return true;
} else {
console.log("Either get5 or G5WS plugin is missing.");
Expand Down

0 comments on commit 45a312d

Please sign in to comment.