mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-20 18:07:43 +01:00
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
From 163171a8e0559962f2c63bfa96b7d677aa0e505a Mon Sep 17 00:00:00 2001
|
|
From: William Blake Galbreath <blake.galbreath@gmail.com>
|
|
Date: Wed, 10 Jul 2019 20:57:08 -0500
|
|
Subject: [PATCH] Make giants only as strong as ravagers
|
|
|
|
---
|
|
src/main/java/net/minecraft/server/EntityGiantZombie.java | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityGiantZombie.java b/src/main/java/net/minecraft/server/EntityGiantZombie.java
|
|
index 3af376079..e69e7a456 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityGiantZombie.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityGiantZombie.java
|
|
@@ -21,7 +21,7 @@ public class EntityGiantZombie extends EntityMonster {
|
|
super.initAttributes();
|
|
this.getAttributeInstance(GenericAttributes.MAX_HEALTH).setValue(100.0D);
|
|
this.getAttributeInstance(GenericAttributes.MOVEMENT_SPEED).setValue(0.5D);
|
|
- this.getAttributeInstance(GenericAttributes.ATTACK_DAMAGE).setValue(50.0D);
|
|
+ this.getAttributeInstance(GenericAttributes.ATTACK_DAMAGE).setValue(12.0D); // Purpur - match ravager damage
|
|
}
|
|
|
|
// Purpur start
|
|
--
|
|
2.20.1
|
|
|