diff --git a/src/lib/invention/MaterialBank.ts b/src/lib/invention/MaterialBank.ts index 53b5091ca6..ef34ca1444 100644 --- a/src/lib/invention/MaterialBank.ts +++ b/src/lib/invention/MaterialBank.ts @@ -91,7 +91,7 @@ export class MaterialBank { res.push(`${toTitleCase(type)}: ${qty.toLocaleString()}`); } - return `${res.join('\n')}`; + return res.join(', '); } public values() { diff --git a/src/mahoji/commands/invention.ts b/src/mahoji/commands/invention.ts index 1338c2e506..a9b2e78da7 100644 --- a/src/mahoji/commands/invention.ts +++ b/src/mahoji/commands/invention.ts @@ -215,7 +215,8 @@ export const inventionCommand: OSBMahojiCommand = { return str; } if (options.materials) { - return { content: `You own:\n${user.materialsOwned()}`, ephemeral: true }; + const materialsOwned = user.materialsOwned().toString().split(', ').join('\n'); + return { content: `You own:\n${materialsOwned}`, ephemeral: true }; } if (options.group) { diff --git a/src/tasks/minions/monsterActivity.ts b/src/tasks/minions/monsterActivity.ts index 54de9082df..2e9f4f6abd 100644 --- a/src/tasks/minions/monsterActivity.ts +++ b/src/tasks/minions/monsterActivity.ts @@ -84,12 +84,12 @@ async function bonecrusherEffect(user: MUser, loot: Bank, duration: number, mess multiplier: false }); messages.push( - `${xpStr} Prayer XP${ + `${xpStr} Prayer XP ${ hasSuperior - ? `(${inventionBoosts.superiorBonecrusher.xpBoostPercent}% more from Superior bonecrusher, ${ - boostMsg ? `, ${boostMsg}` : '' - })` - : '' + ? `+${inventionBoosts.superiorBonecrusher.xpBoostPercent}% more from Superior bonecrusher${ + boostMsg ? ` (${boostMsg})` : '' + }` + : ' from Gorajan bonecrusher' }` ); }