Skip to content

Instantly share code, notes, and snippets.

@drunderscore
Last active March 26, 2020 02:05
Show Gist options
  • Save drunderscore/6d7f9042533af2327115708a346a55a0 to your computer and use it in GitHub Desktop.
Save drunderscore/6d7f9042533af2327115708a346a55a0 to your computer and use it in GitHub Desktop.
Bug based on canceling the PlayerInteractEntity for an Ender Dragon

Despite the name of the plugin/file, this does not actually seem to occur on Spigot, rather on Paper.

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