-
Bug
-
Resolution: Invalid
-
Minor
-
None
-
None
-
Ubuntu 18.04 (LTS)
-
git-Spigot-a1f2566-97b0057 (MC: 1.13.2)
-
Yes
EntityBlockFormEvent doesn't trigger when an entity forms frosted ice using the frost walker enchantment, this occurs for both Frost Walker I and Frost Walker II.
Tested using the code below:
public void onEnable() { getServer().getPluginManager().registerEvents(this, this); } @EventHandler public void onEntityBlockForm(EntityBlockFormEvent event) { if (event.getEntity() instanceof Player) { if (event.getBlock().getType().equals(Material.FROSTED_ICE)) { System.out.println("Success!"); } } }