Skip to content

Commit

Permalink
Fix: Very special occasion
Browse files Browse the repository at this point in the history
  • Loading branch information
jingwenMC committed Jan 3, 2023
1 parent f89f588 commit 492125b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 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>top.jingwenmc</groupId>
<artifactId>SpigotPie</artifactId>
<version>2.0.3</version>
<version>D</version>
<packaging>jar</packaging>

<name>SpigotPie</name>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package top.jingwenmc.spigotpie;

public class PieDistroConfigurations {
public static final String DISTRO_VERSION = "2.0.3";
public static final String DISTRO_VERSION = "2.0.4";

public static final int API_VERSION = 2;
}
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ public void accept(CommandItem commandItem) {
arrayList.add(s);
} else {
if(s.endsWith("\"")) {
arrayList.add(s.substring(1,s.length()-1));
if(s.equalsIgnoreCase("\"")) arrayList.add("\"");
else arrayList.add(s.substring(1,s.length()-1));
} else {
lock = true;
stringJoiner = new StringJoiner(" ");
Expand Down

0 comments on commit 492125b

Please sign in to comment.