PaperMC/patches/server/Configurable-baby-zombie-movement-speed.patch

32 lines
2.4 KiB
Diff
Raw Normal View History

2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Zach Brown <1254957+zachbr@users.noreply.github.com>
Date: Tue, 1 Mar 2016 13:09:16 -0600
Subject: [PATCH] Configurable baby zombie movement speed
diff --git a/src/main/java/net/minecraft/world/entity/monster/Zombie.java b/src/main/java/net/minecraft/world/entity/monster/Zombie.java
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
--- a/src/main/java/net/minecraft/world/entity/monster/Zombie.java
+++ b/src/main/java/net/minecraft/world/entity/monster/Zombie.java
2024-06-13 19:12:48 +02:00
@@ -0,0 +0,0 @@ import org.bukkit.event.entity.EntityTransformEvent;
public class Zombie extends Monster {
2021-06-11 14:02:28 +02:00
2024-06-13 19:12:48 +02:00
private static final ResourceLocation SPEED_MODIFIER_BABY_ID = ResourceLocation.withDefaultNamespace("baby");
- private static final AttributeModifier SPEED_MODIFIER_BABY = new AttributeModifier(Zombie.SPEED_MODIFIER_BABY_ID, 0.5D, AttributeModifier.Operation.ADD_MULTIPLIED_BASE);
+ private final AttributeModifier babyModifier = new AttributeModifier(Zombie.SPEED_MODIFIER_BABY_ID, this.level().paperConfig().entities.behavior.babyZombieMovementModifier, AttributeModifier.Operation.ADD_MULTIPLIED_BASE); // Paper - Make baby speed configurable
private static final ResourceLocation REINFORCEMENT_CALLER_CHARGE_ID = ResourceLocation.withDefaultNamespace("reinforcement_caller_charge");
private static final AttributeModifier ZOMBIE_REINFORCEMENT_CALLEE_CHARGE = new AttributeModifier(ResourceLocation.withDefaultNamespace("reinforcement_callee_charge"), -0.05000000074505806D, AttributeModifier.Operation.ADD_VALUE);
private static final ResourceLocation LEADER_ZOMBIE_BONUS_ID = ResourceLocation.withDefaultNamespace("leader_zombie_bonus");
2021-06-11 14:02:28 +02:00
@@ -0,0 +0,0 @@ public class Zombie extends Monster {
2023-06-07 20:31:32 +02:00
if (this.level() != null && !this.level().isClientSide) {
2021-06-11 14:02:28 +02:00
AttributeInstance attributemodifiable = this.getAttribute(Attributes.MOVEMENT_SPEED);
2024-06-13 19:12:48 +02:00
- attributemodifiable.removeModifier(Zombie.SPEED_MODIFIER_BABY_ID);
2024-04-25 06:38:28 +02:00
+ attributemodifiable.removeModifier(this.babyModifier.id()); // Paper - Make baby speed configurable
2021-06-11 14:02:28 +02:00
if (baby) {
- attributemodifiable.addTransientModifier(Zombie.SPEED_MODIFIER_BABY);
+ attributemodifiable.addTransientModifier(this.babyModifier); // Paper - Make baby speed configurable
2021-06-11 14:02:28 +02:00
}
}