diff --git a/common/src/main/java/toughasnails/init/ModVillages.java b/common/src/main/java/toughasnails/init/ModVillages.java index 0b0d1ec0..91b55d1c 100644 --- a/common/src/main/java/toughasnails/init/ModVillages.java +++ b/common/src/main/java/toughasnails/init/ModVillages.java @@ -90,16 +90,11 @@ public class ModVillages public static void addVillagerTrades(VillagerTradesEvent event) { - addProfessionTrade(event, TANVillagerProfessions.CLIMATOLOGIST, CLIMATOLOGIST_TRADES); - } - - public static void addProfessionTrade(VillagerTradesEvent event, VillagerProfession profession, Int2ObjectMap trades) - { - if (event.getProfession() == profession) + if (event.getProfession() == TANVillagerProfessions.CLIMATOLOGIST) { for (int level = 1; level <= 5; level++) { - for (VillagerTrades.ItemListing trade : trades.get(level)) + for (VillagerTrades.ItemListing trade : CLIMATOLOGIST_TRADES.get(level)) { if (event.getLevel() == level) { diff --git a/common/src/main/resources/assets/toughasnails/textures/gui/icons.png b/common/src/main/resources/assets/toughasnails/textures/gui/icons.png index 49dffce4..6e4de166 100644 Binary files a/common/src/main/resources/assets/toughasnails/textures/gui/icons.png and b/common/src/main/resources/assets/toughasnails/textures/gui/icons.png differ diff --git a/common/src/main/resources/assets/toughasnails/textures/mob_effect/thirst.png b/common/src/main/resources/assets/toughasnails/textures/mob_effect/thirst.png index 695bb1cd..4b09fa6a 100644 Binary files a/common/src/main/resources/assets/toughasnails/textures/mob_effect/thirst.png and b/common/src/main/resources/assets/toughasnails/textures/mob_effect/thirst.png differ