Skip to content
This repository has been archived by the owner on Dec 5, 2021. It is now read-only.

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
Former-commit-id: c062817
  • Loading branch information
Ghost-chu committed Jan 27, 2020
1 parent b0ea8c0 commit c95d49e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
15 changes: 1 addition & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.maxgamer</groupId>
<artifactId>QuickShop</artifactId>
<version>3.1.3</version>
<version>3.1.3.1</version>

<licenses>
<license>
Expand Down Expand Up @@ -61,13 +61,6 @@
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>me.lucko.commodore</pattern>
<!-- vvv Replace with the package of your plugin vvv -->
<shadedPattern>org.maxgamer.quickshop.commodore</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -354,12 +347,6 @@
<version>1.6.9.5-U0.5.7</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>me.lucko</groupId>
<artifactId>commodore</artifactId>
<version>1.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,9 @@ public boolean onCommand(
@NotNull String commandLabel,
@NotNull String[] cmdArg) {
// No args, it shouldn't happend
if (QuickShop.instance.getBootError() != null) {
return null;
}
if (sender instanceof Player) {
if (QuickShop.instance.getConfig().getBoolean("effect.sound.ontabcomplete")) {
Player player = (Player) sender;
Expand Down

0 comments on commit c95d49e

Please sign in to comment.