Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-20 05:20:07 +01:00
Fixed EntityArrow just to use the PVP setting if the destination is a
Player. Fixes BUKKIT-803
Dieser Commit ist enthalten in:
Ursprung
a7f0b70a3a
Commit
2887f99fe5
@ -187,7 +187,7 @@ public class EntityArrow extends Entity {
|
|||||||
damagesource = DamageSource.arrow(this, this.shooter);
|
damagesource = DamageSource.arrow(this, this.shooter);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.isBurning() && this.world.pvpMode) { // CraftBukkit - abide by pvp setting.
|
if (this.isBurning() && (!(movingobjectposition.entity instanceof EntityPlayer) || this.world.pvpMode)) { // CraftBukkit - abide by pvp setting if destination is a player.
|
||||||
// CraftBukkit start
|
// CraftBukkit start
|
||||||
EntityCombustByEntityEvent combustEvent = new EntityCombustByEntityEvent(this.getBukkitEntity(), entity.getBukkitEntity(), 5);
|
EntityCombustByEntityEvent combustEvent = new EntityCombustByEntityEvent(this.getBukkitEntity(), entity.getBukkitEntity(), 5);
|
||||||
Bukkit.getPluginManager().callEvent(combustEvent);
|
Bukkit.getPluginManager().callEvent(combustEvent);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren