Merge branch 'development'

This commit is contained in:
Brianna O'Keefe 2024-03-14 16:07:31 -05:00
commit 36bc2f743b
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.3</version>
<version>3.1.4</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.3</version>
<version>3.1.4</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")) {
if (player.hasPermission("ultimatestacker.spawner.nostack") && !player.isOp()) {
event.setCancelled(false);
return;
}

View File

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