Fixed /sc check command to check the silent chest status. #118

Closed
unixminecraft wants to merge 1 commits from master into master
10 changed files with 17 additions and 17 deletions

View File

@@ -21,7 +21,7 @@
<parent>
<groupId>com.lishid</groupId>
<artifactId>openinvparent</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</parent>
RoboMWM commented 2020-01-14 21:49:20 -05:00 (Migrated from github.com)
Review

Usually you don't want to touch the version in PRs, as the repo

  • may have other changes to include in a release
  • will cause merge conflicts with future PRs (until pulled)
Usually you don't want to touch the version in PRs, as the repo - may have other changes to include in a release - will cause merge conflicts with future PRs (until pulled)
RoboMWM commented 2020-01-14 21:49:55 -05:00 (Migrated from github.com)
Review

Also, this would make the PR a much more manageable one-line change instead of a larger 10 file change.

Also, this would make the PR a much more manageable one-line change instead of a larger 10 file change.
<artifactId>openinvapi</artifactId>

View File

@@ -21,7 +21,7 @@
<parent>
<groupId>com.lishid</groupId>
<artifactId>openinvparent</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</parent>
<artifactId>openinvassembly</artifactId>

View File

@@ -21,7 +21,7 @@
<parent>
<groupId>com.lishid</groupId>
<artifactId>openinvparent</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</parent>
<artifactId>openinvcommon</artifactId>
@@ -31,7 +31,7 @@
<dependency>
<groupId>com.lishid</groupId>
<artifactId>openinvapi</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>

View File

@@ -20,7 +20,7 @@
<parent>
<groupId>com.lishid</groupId>
<artifactId>openinvparent</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</parent>
<artifactId>openinvinternal</artifactId>

View File

@@ -22,7 +22,7 @@
<parent>
<groupId>com.lishid</groupId>
<artifactId>openinvinternal</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</parent>
<artifactId>openinvadapter1_14_R1</artifactId>
@@ -38,7 +38,7 @@
<dependency>
<groupId>com.lishid</groupId>
<artifactId>openinvcommon</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</dependency>
</dependencies>

View File

@@ -22,7 +22,7 @@
<parent>
<groupId>com.lishid</groupId>
<artifactId>openinvinternal</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</parent>
<artifactId>openinvadapter1_15_R1</artifactId>
@@ -38,7 +38,7 @@
<dependency>
<groupId>com.lishid</groupId>
<artifactId>openinvcommon</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</dependency>
</dependencies>

View File

@@ -21,7 +21,7 @@
<parent>
<groupId>com.lishid</groupId>
<artifactId>openinvinternal</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</parent>
<artifactId>openinvadapter1_8_R3</artifactId>
@@ -37,7 +37,7 @@
<dependency>
<groupId>com.lishid</groupId>
<artifactId>openinvcommon</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</dependency>
</dependencies>

View File

@@ -21,7 +21,7 @@
<parent>
<groupId>com.lishid</groupId>
<artifactId>openinvparent</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</parent>
<artifactId>openinvplugincore</artifactId>
@@ -31,7 +31,7 @@
<dependency>
<groupId>com.lishid</groupId>
<artifactId>openinvcommon</artifactId>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>

View File

@@ -40,7 +40,7 @@ public class SilentChestPluginCommand implements CommandExecutor {
Player player = (Player) sender;
if (args.length > 0 && args[0].equalsIgnoreCase("check")) {
sender.sendMessage("SilentChest is " + (plugin.getPlayerAnyChestStatus(player) ? "ON" : "OFF") + ".");
sender.sendMessage("SilentChest is " + (plugin.getPlayerSilentChestStatus(player) ? "ON" : "OFF") + ".");
return true;
}

View File

@@ -21,7 +21,7 @@
<artifactId>openinvparent</artifactId>
<name>OpenInvParent</name>
<url>http://dev.bukkit.org/bukkit-plugins/openinv/</url>
<version>4.0.9-SNAPSHOT</version>
<version>4.0.10-SNAPSHOT</version>
<packaging>pom</packaging>