aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0193-Make-max-squid-spawn-height-configurable.patch
diff options
context:
space:
mode:
authorZach Brown <[email protected]>2019-10-26 17:55:58 -0500
committerZach Brown <[email protected]>2019-10-26 17:55:58 -0500
commit0d3b35c3399c2d4fd019a4271b4e96797e9b3b69 (patch)
treef26357772efdd96073974dd3abed56157a207e12 /Spigot-Server-Patches/0193-Make-max-squid-spawn-height-configurable.patch
parentdf984898acc79ead4a645c7fd26e3876f62058cc (diff)
downloadPaper-0d3b35c3399c2d4fd019a4271b4e96797e9b3b69.tar.gz
Paper-0d3b35c3399c2d4fd019a4271b4e96797e9b3b69.zip
Rename baby zombie movement config option
This option does not set the absolute speed of the entity as the name implies. It sets a modifier. The default (vanilla) value of `0.5` sets the baby zombie to move at 50% faster than the base speed. A negative value like `-0.4` would set them to move at 40% slower. There should be no functional changes as a result of this change, it's just clarifying the config name.
Diffstat (limited to 'Spigot-Server-Patches/0193-Make-max-squid-spawn-height-configurable.patch')
-rw-r--r--Spigot-Server-Patches/0193-Make-max-squid-spawn-height-configurable.patch10
1 files changed, 5 insertions, 5 deletions
diff --git a/Spigot-Server-Patches/0193-Make-max-squid-spawn-height-configurable.patch b/Spigot-Server-Patches/0193-Make-max-squid-spawn-height-configurable.patch
index 479f0703e7..d4b6007f2f 100644
--- a/Spigot-Server-Patches/0193-Make-max-squid-spawn-height-configurable.patch
+++ b/Spigot-Server-Patches/0193-Make-max-squid-spawn-height-configurable.patch
@@ -1,4 +1,4 @@
-From 0057bdebdfd3f05456d733383f3ae0570885290b Mon Sep 17 00:00:00 2001
+From c8322dca6d932724fccf3fdff4d06653ae0bdcae Mon Sep 17 00:00:00 2001
From: Zach Brown <[email protected]>
Date: Thu, 11 Jan 2018 16:47:28 -0600
Subject: [PATCH] Make max squid spawn height configurable
@@ -7,10 +7,10 @@ I don't know why upstream made only the minimum height configurable but
whatever
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
-index b3d8fe9c68..7287bf7d9b 100644
+index 063ba6a1d..aacce432b 100644
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
-@@ -339,4 +339,9 @@ public class PaperWorldConfig {
+@@ -344,4 +344,9 @@ public class PaperWorldConfig {
expMergeMaxValue = getInt("experience-merge-max-value", -1);
log("Experience Merge Max Value: " + expMergeMaxValue);
}
@@ -21,7 +21,7 @@ index b3d8fe9c68..7287bf7d9b 100644
+ }
}
diff --git a/src/main/java/net/minecraft/server/EntitySquid.java b/src/main/java/net/minecraft/server/EntitySquid.java
-index f8fa64959f..735d1879a8 100644
+index f8fa64959..735d1879a 100644
--- a/src/main/java/net/minecraft/server/EntitySquid.java
+++ b/src/main/java/net/minecraft/server/EntitySquid.java
@@ -171,7 +171,8 @@ public class EntitySquid extends EntityWaterAnimal {
@@ -35,5 +35,5 @@ index f8fa64959f..735d1879a8 100644
public void a(float f, float f1, float f2) {
--
-2.22.0
+2.23.0