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/0243-Add-config-to-disable-ender-dragon-legacy-check.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/0243-Add-config-to-disable-ender-dragon-legacy-check.patch')
-rw-r--r-- | Spigot-Server-Patches/0243-Add-config-to-disable-ender-dragon-legacy-check.patch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Spigot-Server-Patches/0243-Add-config-to-disable-ender-dragon-legacy-check.patch b/Spigot-Server-Patches/0243-Add-config-to-disable-ender-dragon-legacy-check.patch index 6177a20925..63ff22a779 100644 --- a/Spigot-Server-Patches/0243-Add-config-to-disable-ender-dragon-legacy-check.patch +++ b/Spigot-Server-Patches/0243-Add-config-to-disable-ender-dragon-legacy-check.patch @@ -1,14 +1,14 @@ -From 7320ef367e08783793e1b1a464626ecdeb810259 Mon Sep 17 00:00:00 2001 +From 24d1262ccbd9493d25537b1dd8f780752b8e5ef5 Mon Sep 17 00:00:00 2001 From: BillyGalbreath <[email protected]> Date: Fri, 22 Jun 2018 10:38:31 -0500 Subject: [PATCH] Add config to disable ender dragon legacy check diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java -index 182ac2e7f6..b7e819d601 100644 +index 6c3d074b8..bf08deb25 100644 --- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java +++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java -@@ -365,4 +365,9 @@ public class PaperWorldConfig { +@@ -370,4 +370,9 @@ public class PaperWorldConfig { private void shieldBlockingDelay() { shieldBlockingDelay = getInt("game-mechanics.shield-blocking-delay", 5); } @@ -19,7 +19,7 @@ index 182ac2e7f6..b7e819d601 100644 + } } diff --git a/src/main/java/net/minecraft/server/EnderDragonBattle.java b/src/main/java/net/minecraft/server/EnderDragonBattle.java -index 88a8e4abd0..6700c8c658 100644 +index 88a8e4abd..6700c8c65 100644 --- a/src/main/java/net/minecraft/server/EnderDragonBattle.java +++ b/src/main/java/net/minecraft/server/EnderDragonBattle.java @@ -28,10 +28,10 @@ public class EnderDragonBattle { @@ -47,5 +47,5 @@ index 88a8e4abd0..6700c8c658 100644 if (nbttagcompound.hasKeyOfType("DragonKilled", 99)) { if (nbttagcompound.b("DragonUUID")) { -- -2.22.0 +2.23.0 |