From 3906ea4a1e613e89425541dc14e9752e3ff90c81 Mon Sep 17 00:00:00 2001 From: KandiPanda <43508599+KandiPanda@users.noreply.github.com> Date: Thu, 11 Jun 2020 22:59:53 -0500 Subject: [PATCH] Update Configs.java Add tamedHostileMobExemption option --- src/main/java/tschipp/carryon/common/config/Configs.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/tschipp/carryon/common/config/Configs.java b/src/main/java/tschipp/carryon/common/config/Configs.java index 085e0c0..069f330 100644 --- a/src/main/java/tschipp/carryon/common/config/Configs.java +++ b/src/main/java/tschipp/carryon/common/config/Configs.java @@ -34,6 +34,9 @@ public class Configs { @Comment("Whether hostile mobs should be able to picked up in survival mode") public boolean pickupHostileMobs = false; + @Comment("Whether tamed hostile mobs should be exempt from the above") + public boolean tamedHostileMobExemption = true; + @Comment("Larger Entities slow down the player more") public boolean heavyEntities = true;