2022-09-18 05:46:20 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Lulu13022002 <41980282+Lulu13022002@users.noreply.github.com>
|
|
|
|
Date: Tue, 16 Aug 2022 19:44:55 +0200
|
|
|
|
Subject: [PATCH] Missing effect cause
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/animal/axolotl/Axolotl.java b/src/main/java/net/minecraft/world/entity/animal/axolotl/Axolotl.java
|
2023-06-08 10:47:19 +02:00
|
|
|
index 10029f37fd70955483f12ba525ec3a598f9994f1..2682a49cd3948e0f80e2d7e58abcd3e6d8f7ac4e 100644
|
2022-09-18 05:46:20 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/animal/axolotl/Axolotl.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/animal/axolotl/Axolotl.java
|
2023-03-14 22:10:53 +01:00
|
|
|
@@ -429,7 +429,7 @@ public class Axolotl extends Animal implements LerpingModel, VariantHolder<Axolo
|
|
|
|
player.addEffect(new MobEffectInstance(MobEffects.REGENERATION, j, 0), this, org.bukkit.event.entity.EntityPotionEffectEvent.Cause.AXOLOTL); // CraftBukkit
|
2022-09-18 05:46:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- player.removeEffect(MobEffects.DIG_SLOWDOWN);
|
|
|
|
+ player.removeEffect(MobEffects.DIG_SLOWDOWN, org.bukkit.event.entity.EntityPotionEffectEvent.Cause.AXOLOTL); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/item/HoneyBottleItem.java b/src/main/java/net/minecraft/world/item/HoneyBottleItem.java
|
|
|
|
index b9dbe5301b04cb1aa5da3a3ee7560c806ce6a411..c8d6b5e60b6c8c612fa8580c63a32c4a8f8b0a7b 100644
|
|
|
|
--- a/src/main/java/net/minecraft/world/item/HoneyBottleItem.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/item/HoneyBottleItem.java
|
|
|
|
@@ -28,7 +28,7 @@ public class HoneyBottleItem extends Item {
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!world.isClientSide) {
|
|
|
|
- user.removeEffect(MobEffects.POISON);
|
|
|
|
+ user.removeEffect(MobEffects.POISON, org.bukkit.event.entity.EntityPotionEffectEvent.Cause.FOOD); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stack.isEmpty()) {
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/item/SuspiciousStewItem.java b/src/main/java/net/minecraft/world/item/SuspiciousStewItem.java
|
2023-06-08 10:47:19 +02:00
|
|
|
index 27873b16b82cac251c756f81844a4f8818a9c94c..1efcec68a3a32b0b6195add7a487bffde4f713ad 100644
|
2022-09-18 05:46:20 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/item/SuspiciousStewItem.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/item/SuspiciousStewItem.java
|
2022-12-07 23:05:32 +01:00
|
|
|
@@ -71,7 +71,7 @@ public class SuspiciousStewItem extends Item {
|
|
|
|
@Override
|
|
|
|
public ItemStack finishUsingItem(ItemStack stack, Level world, LivingEntity user) {
|
|
|
|
ItemStack itemStack = super.finishUsingItem(stack, world, user);
|
|
|
|
- listPotionEffects(itemStack, user::addEffect);
|
|
|
|
+ listPotionEffects(itemStack, effect -> user.addEffect(effect, org.bukkit.event.entity.EntityPotionEffectEvent.Cause.FOOD)); // Paper
|
|
|
|
return user instanceof Player && ((Player)user).getAbilities().instabuild ? itemStack : new ItemStack(Items.BOWL);
|
|
|
|
}
|
|
|
|
}
|