Despite the name of the plugin/file, this does not actually seem to occur on Spigot, rather on Paper.
Last active
March 26, 2020 02:05
-
-
Save drunderscore/6d7f9042533af2327115708a346a55a0 to your computer and use it in GitHub Desktop.
Bug based on canceling the PlayerInteractEntity for an Ender Dragon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SpigotInteractBug extends JavaPlugin implements Listener | |
{ | |
@Override | |
public void onEnable() | |
{ | |
getServer().getPluginManager().registerEvents( this, this ); | |
} | |
@EventHandler | |
public void onInteractEntity( PlayerInteractEntityEvent e ) | |
{ | |
if( e.getRightClicked() instanceof EnderDragon || e.getRightClicked() instanceof EnderDragonPart ) | |
{ | |
Bukkit.broadcastMessage( "Canceling interaction event for " + e.getRightClicked().getType().name() + ", uuid " + e.getRightClicked() | |
.getUniqueId() ); | |
e.setCancelled( true ); // BUG: Canceling for EnderDragon will cause a server exception after. | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment