Compare commits

...

3 Commits

Author SHA1 Message Date
Brianna O'Keefe 36bc2f743b Merge branch 'development' 2024-03-14 16:07:31 -05:00
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> <parent>
<groupId>com.craftaro</groupId> <groupId>com.craftaro</groupId>
<artifactId>UltimateStacker-Parent</artifactId> <artifactId>UltimateStacker-Parent</artifactId>
<version>3.1.3</version> <version>3.1.4</version>
</parent> </parent>
<artifactId>UltimateStacker-API</artifactId> <artifactId>UltimateStacker-API</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>

View File

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

View File

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

View File

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