diff --git a/src/mahoji/commands/hunt.ts b/src/mahoji/commands/hunt.ts index 49668c4be8..bf2925c595 100644 --- a/src/mahoji/commands/hunt.ts +++ b/src/mahoji/commands/hunt.ts @@ -137,7 +137,7 @@ export const huntCommand: OSBMahojiCommand = { Math.min( Math.floor( (await user.getCreatureScore(creature.id)) / - (Time.Hour / ((creature.catchTime * Time.Second) / traps)) + (Time.Hour / ((creature.catchTime * Time.Second) / traps)) ), creature.huntTechnique === HunterTechniqueEnum.Tracking ? 20 : 10 ), @@ -250,8 +250,9 @@ export const huntCommand: OSBMahojiCommand = { break; } } - wildyStr = `You are hunting ${creature.name} in the Wilderness during ${wildyPeak?.peakTier - } peak time and potentially risking your equipped body and legs in the wildy setup with a score ${wildyScore} and also risking Saradomin brews and Super restore potions.`; + wildyStr = `You are hunting ${creature.name} in the Wilderness during ${ + wildyPeak?.peakTier + } peak time and potentially risking your equipped body and legs in the wildy setup with a score ${wildyScore} and also risking Saradomin brews and Super restore potions.`; } await trackLoot({ @@ -280,8 +281,9 @@ export const huntCommand: OSBMahojiCommand = { itemCost: removeBank }); - let response = `${user.minionName} is now ${crystalImpling ? 'hunting' : `${creature.huntTechnique}`}${crystalImpling ? ' ' : ` ${quantity}x ` - }${creature.name}, it'll take around ${formatDuration(duration)} to finish.`; + let response = `${user.minionName} is now ${crystalImpling ? 'hunting' : `${creature.huntTechnique}`}${ + crystalImpling ? ' ' : ` ${quantity}x ` + }${creature.name}, it'll take around ${formatDuration(duration)} to finish.`; if (boosts.length > 0) { response += `\n\n**Boosts:** ${boosts.join(', ')}.`; diff --git a/src/mahoji/commands/offer.ts b/src/mahoji/commands/offer.ts index 6be74b44ac..bc57fe15eb 100644 --- a/src/mahoji/commands/offer.ts +++ b/src/mahoji/commands/offer.ts @@ -284,6 +284,8 @@ export const offerCommand: OSBMahojiCommand = { type: 'Offering', itemCost: cost }); - return `${user.minionName} is now offering ${quantity}x ${bone.name} at the Chaos altar, it'll take around ${formatDuration(duration)} to finish.`; + return `${user.minionName} is now offering ${quantity}x ${ + bone.name + } at the Chaos altar, it'll take around ${formatDuration(duration)} to finish.`; } };