[SPIGOT-2400] Strange mob behaviour after trying to set him riding a player Created: 12/Jun/16  Updated: 16/Jun/16  Resolved: 16/Jun/16

Status: Closed
Project: Spigot
Component/s: None
Affects Version/s: None
Fix Version/s: None

Type: Bug Priority: Minor
Reporter: acc01922 Assignee: Unassigned
Resolution: Duplicate Votes: 1
Labels: 1.9, Spigot, bug, entity
Environment:

Windows 10 with Java 1.8.0_92.
Spigot 1.10-R0.1-SNAPSHOT, 1.9.4-R0.1-SNAPSHOT.



 Description   

I was just trying to spawn an Entity near a player on login and set it riding him through:

Player p = event.getPlayer();
Chicken chicken = (Chicken) p.getWorld().spawnEntity(p.getLocation(), EntityType.CHICKEN);

p.setPassenger(chicken);

No errors are thrown, however, even if setPassenger() returns true with:

System.out.println(String.valueof(p.setPassenger(chicken)));

... nothing seems to ride the player. Nor it seems the Entity (in this case, a chicken, but the bug is replicable with whatever EntityType) spawned at all.
But the Entity actually exists: try shooting an arrow or another Projectile over your head and you'll get the drops. Note that you can't hit it with a sword.

Even funnier:

public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
        if(label.equalsIgnoreCase("t")){
            Player p = (Player) sender;
            Chicken chicken = (Chicken) p.getWorld().spawnEntity(p.getLocation(), EntityType.CHICKEN);
            p.setPassenger(chicken);
        }
return true;
}

Nothing weird. However, in this case, the Chicken is visible on your feet. The thing is that you can kill the Entity both by killing what you see (sword or Projectile) or by shooting a Projectile over your head. In this last case, the visible Entity will display the death animation and die. So they are linked, as if there was an Entity with two hitboxes.

I've tested this with the last build of Spigot 1.9.4 and the last one of 1.10 (git-Spigot-3ccadba-7f1a322 MC: 1.10)



 Comments   
Comment by Black Hole [ 16/Jun/16 ]

There is another issue for this already, so I'm closing this:
SPIGOT-1915

Comment by acc01922 [ 12/Jun/16 ]

Are you talking about something like that?

Bukkit.getScheduler().runTaskLater(this, new BukkitRunnable() {
                public void run() {
                    p.setPassenger(chicken);
                }
            }, 1);

Nothing seems to be changing, though.

Comment by Black Hole [ 12/Jun/16 ]

As a workaround use Bukkit.getScheduler.runTask(...) to set the passenger in the next tick.

Generated at Thu Apr 03 16:26:07 UTC 2025 using Jira 10.3.3#10030003-sha1:d220e3fefc8dfc6d47f522d3b9a20c1455e12b7b.