Skip to content

Commit

Permalink
minor stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Jsinco committed Aug 24, 2024
1 parent 32f5a6d commit 626707c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/dre/brewery/BreweryPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void onEnable() {
migrateBreweryDataFolder();

// Version check
log("Minecraft version&7:&6 " + minecraftVersion.getVersion());
log("Minecraft version&7:&a " + minecraftVersion.getVersion());
if (minecraftVersion == MinecraftVersion.UNKNOWN) {
warningLog("This version of Minecraft is not known to Brewery! Please be wary of bugs or other issues that may occur in this version.");
}
Expand Down Expand Up @@ -202,9 +202,9 @@ public void onEnable() {

if (UpdateChecker.parseVersion(latestVersion) > UpdateChecker.parseVersion(currentVersion)) {
UpdateChecker.setUpdateAvailable(true);
UpdateChecker.setLatestVersion(latestVersion);
log(languageReader.get("Etc_UpdateAvailable", "v" + currentVersion, "v" + latestVersion));
}
UpdateChecker.setLatestVersion(latestVersion);
});
}

Expand All @@ -213,7 +213,7 @@ public void onEnable() {
new PlaceholderAPI().register();
}

log("Using scheduler: " + scheduler.getClass().getSimpleName());
log("Using scheduler&7: &a" + scheduler.getClass().getSimpleName());
log(this.getDescription().getName() + " enabled!");
}

Expand Down

0 comments on commit 626707c

Please sign in to comment.