Skip to content

Commit

Permalink
Fix JMA final reports not colord
Browse files Browse the repository at this point in the history
  • Loading branch information
TenkyuChimata committed Aug 8, 2024
1 parent 8628187 commit 0e81e30
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>jp.wolfx</groupId>
<artifactId>MCEEW</artifactId>
<version>2.4.3-b4</version>
<version>2.4.3</version>
<packaging>jar</packaging>

<name>MCEEW</name>
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/jp/wolfx/mceew/MCEEW.java
Original file line number Diff line number Diff line change
Expand Up @@ -754,13 +754,13 @@ private static String getShindoColor(String shindo) {
return shindo_color[3] + shindo;
} else if (Objects.equals(shindo, "4")) {
return shindo_color[4] + shindo;
} else if (Objects.equals(shindo, "5弱")) {
} else if (Objects.equals(shindo, "5弱") || Objects.equals(shindo, "5-")) {
return shindo_color[5] + shindo;
} else if (Objects.equals(shindo, "5強")) {
} else if (Objects.equals(shindo, "5強") || Objects.equals(shindo, "5+")) {
return shindo_color[6] + shindo;
} else if (Objects.equals(shindo, "6弱")) {
} else if (Objects.equals(shindo, "6弱") || Objects.equals(shindo, "6-")) {
return shindo_color[7] + shindo;
} else if (Objects.equals(shindo, "6強")) {
} else if (Objects.equals(shindo, "6強") || Objects.equals(shindo, "6+")) {
return shindo_color[8] + shindo;
} else if (Objects.equals(shindo, "7")) {
return shindo_color[9] + shindo;
Expand Down

0 comments on commit 0e81e30

Please sign in to comment.