diff options
author | Zach Brown <[email protected]> | 2019-10-26 17:55:58 -0500 |
---|---|---|
committer | Zach Brown <[email protected]> | 2019-10-26 17:55:58 -0500 |
commit | 0d3b35c3399c2d4fd019a4271b4e96797e9b3b69 (patch) | |
tree | f26357772efdd96073974dd3abed56157a207e12 /Spigot-Server-Patches/0234-Make-shield-blocking-delay-configurable.patch | |
parent | df984898acc79ead4a645c7fd26e3876f62058cc (diff) | |
download | Paper-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/0234-Make-shield-blocking-delay-configurable.patch')
-rw-r--r-- | Spigot-Server-Patches/0234-Make-shield-blocking-delay-configurable.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Spigot-Server-Patches/0234-Make-shield-blocking-delay-configurable.patch b/Spigot-Server-Patches/0234-Make-shield-blocking-delay-configurable.patch index 83c10f6f1f..df1deadf58 100644 --- a/Spigot-Server-Patches/0234-Make-shield-blocking-delay-configurable.patch +++ b/Spigot-Server-Patches/0234-Make-shield-blocking-delay-configurable.patch @@ -1,14 +1,14 @@ -From 4cf5578f687a0d20448b35a1e2935c1dc6dabefd Mon Sep 17 00:00:00 2001 +From 583de78b3b0a8015292a358277c9a45eb458177c Mon Sep 17 00:00:00 2001 From: BillyGalbreath <[email protected]> Date: Sat, 16 Jun 2018 01:18:16 -0500 Subject: [PATCH] Make shield blocking delay configurable diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java -index da1055003..182ac2e7f 100644 +index cb8922329..6c3d074b8 100644 --- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java +++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java -@@ -360,4 +360,9 @@ public class PaperWorldConfig { +@@ -365,4 +365,9 @@ public class PaperWorldConfig { disableEnderpearlExploit = getBoolean("game-mechanics.disable-unloaded-chunk-enderpearl-exploit", disableEnderpearlExploit); log("Disable Unloaded Chunk Enderpearl Exploit: " + (disableEnderpearlExploit ? "enabled" : "disabled")); } @@ -68,5 +68,5 @@ index b8482c632..67f275321 100644 // Paper end } -- -2.22.1 +2.23.0 |