From c27d13f22efef1d456a8825ed24806754a9d3628 Mon Sep 17 00:00:00 2001 From: test137e29b Date: Tue, 9 May 2023 22:07:21 +0100 Subject: [PATCH 1/2] Fix missing zombified piglin default mob config --- src/main/resources/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 0b06519..b99a8a5 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -43,4 +43,5 @@ mobs: - WITHER_SKELETON - WOLF - ZOMBIE -- ZOMBIE_VILLAGER \ No newline at end of file +- ZOMBIE_VILLAGER +- ZOMBIFIED_PIGLIN \ No newline at end of file From 31c420469698f203d6299267b8ac593fb47c33b7 Mon Sep 17 00:00:00 2001 From: test137e29b Date: Tue, 9 May 2023 22:14:20 +0100 Subject: [PATCH 2/2] Warn instead of error --- src/main/java/io/github/thebusybiscuit/souljars/SoulJars.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/github/thebusybiscuit/souljars/SoulJars.java b/src/main/java/io/github/thebusybiscuit/souljars/SoulJars.java index 1f9b68d..a5af68d 100644 --- a/src/main/java/io/github/thebusybiscuit/souljars/SoulJars.java +++ b/src/main/java/io/github/thebusybiscuit/souljars/SoulJars.java @@ -58,7 +58,7 @@ public void onEnable() { EntityType type = EntityType.valueOf(mob); registerSoul(type); } catch (Exception x) { - getLogger().log(Level.SEVERE, "{0}: Possibly invalid mob type: {1}", new Object[] { x.getClass().getSimpleName(), mob }); + getLogger().log(Level.WARNING, "{0}: Possibly invalid mob type: {1}", new Object[] { x.getClass().getSimpleName(), mob }); } }