3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 04:20:08 +01:00

SPIGOT-834: Stop EnderMites from spawning when EnderPearl event is cancelled.

Dieser Commit ist enthalten in:
md_5 2015-05-21 17:28:21 +10:00
Ursprung 6ff4221581
Commit 65fba7fb10

Datei anzeigen

@ -1,5 +1,5 @@
--- /home/matt/mc-dev-private//net/minecraft/server/EntityEnderPearl.java 2015-02-26 22:40:22.523608140 +0000 --- ../work/decompile-c2c33c10/net/minecraft/server/EntityEnderPearl.java 2015-05-21 17:27:14.743333223 +1000
+++ src/main/java/net/minecraft/server/EntityEnderPearl.java 2015-02-26 22:40:22.523608140 +0000 +++ src/main/java/net/minecraft/server/EntityEnderPearl.java 2015-05-21 17:27:14.743333223 +1000
@@ -1,5 +1,11 @@ @@ -1,5 +1,11 @@
package net.minecraft.server; package net.minecraft.server;
@ -12,12 +12,16 @@
public class EntityEnderPearl extends EntityProjectile { public class EntityEnderPearl extends EntityProjectile {
private EntityLiving c; private EntityLiving c;
@@ -41,13 +47,27 @@ @@ -33,21 +39,35 @@
this.world.addEntity(entityendermite); EntityPlayer entityplayer = (EntityPlayer) entityliving;
}
- if (entityliving.au()) { if (entityplayer.playerConnection.a().g() && entityplayer.world == this.world && !entityplayer.isSleeping()) {
- entityliving.mount((Entity) null); - if (this.random.nextFloat() < 0.05F && this.world.getGameRules().getBoolean("doMobSpawning")) {
- EntityEndermite entityendermite = new EntityEndermite(this.world);
-
- entityendermite.a(true);
- entityendermite.setPositionRotation(entityliving.locX, entityliving.locY, entityliving.locZ, entityliving.yaw, entityliving.pitch);
- this.world.addEntity(entityendermite);
+ // CraftBukkit start - Fire PlayerTeleportEvent + // CraftBukkit start - Fire PlayerTeleportEvent
+ org.bukkit.craftbukkit.entity.CraftPlayer player = entityplayer.getBukkitEntity(); + org.bukkit.craftbukkit.entity.CraftPlayer player = entityplayer.getBukkitEntity();
+ org.bukkit.Location location = getBukkitEntity().getLocation(); + org.bukkit.Location location = getBukkitEntity().getLocation();
@ -28,6 +32,14 @@
+ Bukkit.getPluginManager().callEvent(teleEvent); + Bukkit.getPluginManager().callEvent(teleEvent);
+ +
+ if (!teleEvent.isCancelled() && !entityplayer.playerConnection.isDisconnected()) { + if (!teleEvent.isCancelled() && !entityplayer.playerConnection.isDisconnected()) {
+ if (this.random.nextFloat() < 0.05F && this.world.getGameRules().getBoolean("doMobSpawning")) {
+ EntityEndermite entityendermite = new EntityEndermite(this.world);
+
+ entityendermite.a(true);
+ entityendermite.setPositionRotation(entityliving.locX, entityliving.locY, entityliving.locZ, entityliving.yaw, entityliving.pitch);
+ this.world.addEntity(entityendermite);
+ }
+
+ if (entityliving.au()) { + if (entityliving.au()) {
+ entityliving.mount((Entity) null); + entityliving.mount((Entity) null);
+ } + }
@ -39,6 +51,10 @@
+ CraftEventFactory.entityDamage = null; + CraftEventFactory.entityDamage = null;
} }
- -
- if (entityliving.au()) {
- entityliving.mount((Entity) null);
- }
-
- entityliving.enderTeleportTo(this.locX, this.locY, this.locZ); - entityliving.enderTeleportTo(this.locX, this.locY, this.locZ);
- entityliving.fallDistance = 0.0F; - entityliving.fallDistance = 0.0F;
- entityliving.damageEntity(DamageSource.FALL, 5.0F); - entityliving.damageEntity(DamageSource.FALL, 5.0F);