tweaks to start up msg

This commit is contained in:
nossr50 2025-03-09 15:49:26 -07:00
parent 6ad9d97236
commit b2bf29cae2
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,7 @@ Version 2.2.033
Added Breeze_Rod entries to potions.yml for Awkward potion (see notes)
Added missing Wind Charging potion entries to potions.yml (see notes)
Fixed bug where mcMMO would attempt to load potions that required ingredients or effects from newer versions of Minecraft
mcMMO is a little more specific during start up of how many potions it loaded, it will now report on incompatible potions from being on an older game version.
NOTES:
You will have to update your potions.yml manually to receive these changes, it is highly recommended that if you haven't customized this file that you simply just delete it, mcMMO will generate a new one on the next start up and it will contain all the missing entries.

View File

@ -141,7 +141,8 @@ public class PotionConfig extends LegacyConfigLoader {
int totalPotions = potionsLoaded + incompatible + failures;
mcMMO.p.getLogger().info("Loaded " + potionsLoaded + "/" + totalPotions + " Alchemy potions.");
mcMMO.p.getLogger().info("Loaded " + potionsLoaded + " of " + totalPotions + " Alchemy potions.");
if (incompatible > 0) {
mcMMO.p.getLogger().info("Skipped " + incompatible + " Alchemy potions that require a newer" +
" Minecraft game version.");