Skip to content

Commit

Permalink
Updated update link when checking for updates
Browse files Browse the repository at this point in the history
  • Loading branch information
IanTapply22 committed Jun 14, 2024
1 parent dec987f commit 774ae54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/jeqo/bloons/logger/Logger.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@ public static void logStartup() {
*/
public static void logUpdateNotificationConsole() {
logInfo("A new update is available for " + PluginConfiguration.getName() + " plugin");
logInfo("You can find the update at: https://jeqo.net/spigot/bloons");
logInfo("You can find the update at: https://jeqo.net/bloons");
}

/**
* Logs an update notification to a player
*/
public static void logUpdateNotificationPlayer(Player player) {
logToPlayer(player, "A new update is available for " + PluginConfiguration.getName() + " plugin");
logToPlayer(player, "You can find the update at: https://jeqo.net/spigot/bloons");
logToPlayer(player, "You can find the update at: https://jeqo.net/bloons");
}


Expand Down

0 comments on commit 774ae54

Please sign in to comment.