diff --git a/src/ui/React/CharacterOverview.jsx b/src/ui/React/CharacterOverview.jsx index a3594cc75..4d47e2750 100644 --- a/src/ui/React/CharacterOverview.jsx +++ b/src/ui/React/CharacterOverview.jsx @@ -10,7 +10,7 @@ export class CharacterOverviewComponent extends Component { render() { const intelligence = (
Hp: | {Player.hp + " / " + Player.max_hp} | +Hp: | {Player.hp + " / " + Player.max_hp} |
Money: | {numeralWrapper.format(Player.money.toNumber(), '$0.000a')} | +Money: | {numeralWrapper.format(Player.money.toNumber(), '$0.000a')} |
Hack: | {(Player.hacking_skill).toLocaleString()} | +Hack: | {(Player.hacking_skill).toLocaleString()} |
Str: | {(Player.strength).toLocaleString()} | +Str: | {(Player.strength).toLocaleString()} |
Def: | {(Player.defense).toLocaleString()} | +Def: | {(Player.defense).toLocaleString()} |
Dex: | {(Player.dexterity).toLocaleString()} | +Dex: | {(Player.dexterity).toLocaleString()} |
Agi: | {(Player.agility).toLocaleString()} | +Agi: | {(Player.agility).toLocaleString()} |
Cha: | {(Player.charisma).toLocaleString()} | +Cha: | {(Player.charisma).toLocaleString()} |