Compare commits

..

No commits in common. "7fb98dac1d6865b28fb863fc5517fd5abe1e8c41" and "9231f1c11280bd3a6c610a626e381d17dbf4d467" have entirely different histories.

4 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@
<parent>
<groupId>com.craftaro</groupId>
<artifactId>UltimateStacker-Parent</artifactId>
<version>3.1.4</version>
<version>3.1.3</version>
</parent>
<artifactId>UltimateStacker-API</artifactId>
<version>1.0.0-SNAPSHOT</version>

View File

@ -7,7 +7,7 @@
<parent>
<groupId>com.craftaro</groupId>
<artifactId>UltimateStacker-Parent</artifactId>
<version>3.1.4</version>
<version>3.1.3</version>
</parent>
<artifactId>UltimateStacker-Plugin</artifactId>

View File

@ -182,7 +182,7 @@ public class BlockListeners implements Listener {
SpawnerStack stack = UltimateStackerApi.getSpawnerStackManager().getSpawner(block);
if (stack == null) return;
if (player.isSneaking()) return;
if (player.hasPermission("ultimatestacker.spawner.nostack") && !player.isOp()) {
if (player.hasPermission("ultimatestacker.spawner.nostack")) {
event.setCancelled(false);
return;
}

View File

@ -7,7 +7,7 @@
<groupId>com.craftaro</groupId>
<artifactId>UltimateStacker-Parent</artifactId>
<packaging>pom</packaging>
<version>3.1.4</version>
<version>3.1.3</version>
<modules>
<module>UltimateStacker-API</module>