SLEEVE: Fixed inconsistencies in how sleeve work rewards are handled. (#211)

This commit is contained in:
Snarling
2022-11-10 21:56:46 -05:00
committed by GitHub
parent 426ad5f296
commit c669e473d1
14 changed files with 58 additions and 73 deletions
+1 -1
View File
@@ -133,7 +133,7 @@ export function EarningsElement(props: IProps): React.ReactElement {
[`Dexterity Exp:`, `${numeralWrapper.formatExp(CYCLES_PER_SEC * rates.dexExp)} / sec`],
[`Agility Exp:`, `${numeralWrapper.formatExp(CYCLES_PER_SEC * rates.agiExp)} / sec`],
[`Charisma Exp:`, `${numeralWrapper.formatExp(CYCLES_PER_SEC * rates.chaExp)} / sec`],
[`Reputation:`, <ReputationRate reputation={repGain} />],
[`Reputation:`, <ReputationRate reputation={CYCLES_PER_SEC * repGain} />],
];
}