mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
65bc2541a3
By: md_5 <git@md-5.net>
69 lines
2.9 KiB
Diff
69 lines
2.9 KiB
Diff
--- a/net/minecraft/world/entity/animal/EntityDolphin.java
|
|
+++ b/net/minecraft/world/entity/animal/EntityDolphin.java
|
|
@@ -59,8 +59,20 @@
|
|
import net.minecraft.world.level.pathfinder.PathMode;
|
|
import net.minecraft.world.phys.Vec3D;
|
|
|
|
+// CraftBukkit start
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
+import org.bukkit.event.entity.EntityPotionEffectEvent;
|
|
+import org.bukkit.event.entity.EntityRemoveEvent;
|
|
+// CraftBukkit end
|
|
+
|
|
public class EntityDolphin extends EntityWaterAnimal {
|
|
|
|
+ // CraftBukkit start - SPIGOT-6907: re-implement LivingEntity#setMaximumAir()
|
|
+ @Override
|
|
+ public int getDefaultMaxAirSupply() {
|
|
+ return TOTAL_AIR_SUPPLY;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
private static final DataWatcherObject<BlockPosition> TREASURE_POS = DataWatcher.defineId(EntityDolphin.class, DataWatcherRegistry.BLOCK_POS);
|
|
private static final DataWatcherObject<Boolean> GOT_FISH = DataWatcher.defineId(EntityDolphin.class, DataWatcherRegistry.BOOLEAN);
|
|
private static final DataWatcherObject<Integer> MOISTNESS_LEVEL = DataWatcher.defineId(EntityDolphin.class, DataWatcherRegistry.INT);
|
|
@@ -183,7 +195,7 @@
|
|
|
|
@Override
|
|
public int getMaxAirSupply() {
|
|
- return 4800;
|
|
+ return maxAirTicks; // CraftBukkit - SPIGOT-6907: re-implement LivingEntity#setMaximumAir()
|
|
}
|
|
|
|
@Override
|
|
@@ -219,11 +231,17 @@
|
|
ItemStack itemstack = entityitem.getItem();
|
|
|
|
if (this.canHoldItem(itemstack)) {
|
|
+ // CraftBukkit start - call EntityPickupItemEvent
|
|
+ if (CraftEventFactory.callEntityPickupItemEvent(this, entityitem, 0, false).isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ itemstack = entityitem.getItem(); // CraftBukkit- update ItemStack from event
|
|
+ // CraftBukkit start
|
|
this.onItemPickup(entityitem);
|
|
this.setItemSlot(EnumItemSlot.MAINHAND, itemstack);
|
|
this.setGuaranteedDrop(EnumItemSlot.MAINHAND);
|
|
this.take(entityitem, itemstack.getCount());
|
|
- entityitem.discard();
|
|
+ entityitem.discard(EntityRemoveEvent.Cause.PICKUP); // CraftBukkit - add Bukkit remove cause
|
|
}
|
|
}
|
|
|
|
@@ -474,7 +492,7 @@
|
|
|
|
@Override
|
|
public void start() {
|
|
- this.player.addEffect(new MobEffect(MobEffects.DOLPHINS_GRACE, 100), this.dolphin);
|
|
+ this.player.addEffect(new MobEffect(MobEffects.DOLPHINS_GRACE, 100), this.dolphin, EntityPotionEffectEvent.Cause.DOLPHIN); // CraftBukkit
|
|
}
|
|
|
|
@Override
|
|
@@ -493,7 +511,7 @@
|
|
}
|
|
|
|
if (this.player.isSwimming() && this.player.level().random.nextInt(6) == 0) {
|
|
- this.player.addEffect(new MobEffect(MobEffects.DOLPHINS_GRACE, 100), this.dolphin);
|
|
+ this.player.addEffect(new MobEffect(MobEffects.DOLPHINS_GRACE, 100), this.dolphin, EntityPotionEffectEvent.Cause.DOLPHIN); // CraftBukkit
|
|
}
|
|
|
|
}
|