geforkt von Mirrors/Paper
SPIGOT-4159: Fix Player.launchProjectile(Trident.class)
Dieser Commit ist enthalten in:
Ursprung
5d881a9264
Commit
095239d4c5
@ -322,7 +322,7 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
|||||||
} else if (SpectralArrow.class.isAssignableFrom(projectile)) {
|
} else if (SpectralArrow.class.isAssignableFrom(projectile)) {
|
||||||
launch = new EntitySpectralArrow(world, getHandle());
|
launch = new EntitySpectralArrow(world, getHandle());
|
||||||
} else if (Trident.class.isAssignableFrom(projectile)) {
|
} else if (Trident.class.isAssignableFrom(projectile)) {
|
||||||
launch = new EntityThrownTrident(world, getHandle(), net.minecraft.server.ItemStack.a);
|
launch = new EntityThrownTrident(world, getHandle(), new net.minecraft.server.ItemStack(net.minecraft.server.Items.TRIDENT));
|
||||||
} else {
|
} else {
|
||||||
launch = new EntityTippedArrow(world, getHandle());
|
launch = new EntityTippedArrow(world, getHandle());
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren