From 44e0f9adaed26a3c5a2951ad2817859511e3995a Mon Sep 17 00:00:00 2001 From: Jacob Date: Wed, 19 Mar 2025 23:29:23 +0800 Subject: [PATCH] fix(!fairysouls): Add new 5 souls from Backwater Bayou Update --- src/minecraft/commands/fairysoulsCommand.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/minecraft/commands/fairysoulsCommand.js b/src/minecraft/commands/fairysoulsCommand.js index c64d4878..329ea38a 100644 --- a/src/minecraft/commands/fairysoulsCommand.js +++ b/src/minecraft/commands/fairysoulsCommand.js @@ -29,7 +29,7 @@ class FairySoulsCommand extends minecraftCommand { const { username, profile, profileData } = await getLatestProfile(player); - const total = profileData.game_mode === "island" ? 5 : 248; + const total = profileData.game_mode === "island" ? 5 : 253; const fairy_soul = profile.fairy_soul; this.send(`${username}'s Fairy Souls: ${fairy_soul.total_collected} / ${total} | Progress: ${((fairy_soul.total_collected / total) * 100).toFixed(2)}%`); } catch (error) {