Skip to content

Commit

Permalink
akinator バグ修正
Browse files Browse the repository at this point in the history
  • Loading branch information
SimplyRin committed Oct 28, 2021
1 parent c5cb6b2 commit d6dae2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public void onMessageReceived(MessageReceivedEvent event) {
}

for (Guess guess : this.akiWrapper.getGuesses()) {
if (!guess.getDescription().equals("---")) {
if (guess.getDescription() != null && !guess.getDescription().equals("---")) {
System.out.println(guess.getDescription());
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/simplyrin/pandaentus/utils/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
public class Version {

public static final String BUILD_NUMBER = "";
public static final String BUILD_TIME ="2021-10-28 14:23:50";
public static final String BUILD_TIME ="2021-10-28 14:33:43";
public static final String POMVERSION = "1.2";

}

0 comments on commit d6dae2a

Please sign in to comment.