Compare commits

..

No commits in common. "d085a671c51015e7df422819fc9c637c74da6962" and "a18b34b7847b7c3cb4c3be4cde7b564725275f18" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -84,8 +84,8 @@ public class HidekoBot
logger.log("Ready!\n\n" + logger.getLogo() + "\nv" + version + " - bot is ready!\n", 2);
// log the invite-link to console so noob users can just click on it.
logger.log("Bot User ID: " + botUserId, 3);
logger.log("Invite Link: " + standardInviteLink, 4);
logger.log("Bot User ID: " + botUserId, 4);
logger.log("Invite Link: " + standardInviteLink, 5);
}
public static JDA getAPI()

View File

@ -30,7 +30,7 @@ public class MessageListener extends ListenerAdapter
MessageChannel channel = event.getChannel();
boolean paused = Configuration.isPaused();
String msg = paused ? ":white_check_mark: Resuming normal activity!" : ":pause_button: Pausing operation!";
String msg = paused ? ":white_check_mark: Resuming normal activity!" : ":pause_button: Pausing!";
Configuration.setPaused(!paused);
channel.sendMessage(msg).queue();