Compare commits

...

2 Commits

Author SHA1 Message Date
Brianna O'Keefe 7fb98dac1d version 3.1.4 2024-03-14 16:07:23 -05:00
Brianna O'Keefe 47de9e3b83 Allow ops to stack spawners by default. 2024-03-14 16:06:40 -05:00
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>