fix(numbers): round skills, round header Gold, correct tests

This commit is contained in:
Kalista Payne
2025-11-17 15:34:00 -06:00
parent 8e373de8fa
commit fedbedbffe
6 changed files with 17 additions and 18 deletions

View File

@@ -274,13 +274,13 @@ describe('Group Model', () => {
expect(Group.prototype.sendChat).to.be.calledOnce;
expect(Group.prototype.sendChat).to.be.calledWith({
message: '`Participating Member attacks Wailing Whale for 5.0 damage. Wailing Whale attacks party for 7.5 damage.`',
message: '`Participating Member attacks Wailing Whale for 5 damage. Wailing Whale attacks party for 8 damage.`',
info: {
bossDamage: '7.5',
bossDamage: '8',
quest: 'whale',
type: 'boss_damage',
user: 'Participating Member',
userDamage: '5.0',
userDamage: '5',
},
});
});