B40 release

This commit is contained in:
HaHaWTH
2024-01-10 23:28:08 +08:00
parent ed9e379500
commit d9495ff839
3 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ public class AuthMe extends JavaPlugin {
// Version and build number values
private static String pluginVersion = "5.6.0-Fork";
private static final String pluginBuild = "b";
private static String pluginBuildNumber = "39";
private static String pluginBuildNumber = "40";
// Private instances
private EmailService emailService;
private CommandHandler commandHandler;
@@ -11,17 +11,16 @@ import org.bukkit.event.block.BlockDispenseEvent;
//This fix is only for Minecraft 1.13-
public class AdvancedShulkerFixListener implements Listener {
@EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
@EventHandler(priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onDispenserActivate(BlockDispenseEvent event) {
Block block = event.getBlock();
if (block.getRelative(BlockFace.DOWN).getType().equals(Material.AIR) && block.getY() == 0) {
event.setCancelled(true);
return;
}
if (block.getRelative(BlockFace.UP).getType().equals(Material.AIR)) {
if (block.getY() == block.getWorld().getMaxHeight() - 1) {
event.setCancelled(true);
}
if (block.getRelative(BlockFace.UP).getType().equals(Material.AIR) && block.getY() == block.getWorld().getMaxHeight() - 1) {
event.setCancelled(true);
}
}
}