Skip to content

Commit

Permalink
Add up and down arrows to expected value
Browse files Browse the repository at this point in the history
  • Loading branch information
srs42006 committed Aug 31, 2024
1 parent 9b86309 commit d2cdde9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/CookieMonster.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/CookieMonster.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/CookieMonsterDev.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/CookieMonsterDev.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Disp/Tooltips/TypesOfTooltips/StockMarket.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default function StockMarket() {
Game.Objects.Bank.level,
Game.auraMult('Supreme Intellect'),
);
expectedNextValue.textContent = `$${Beautify(expectedValue)}`;
expectedNextValue.textContent = `$${Beautify(expectedValue) + (expectedValue < stock.val ? '\u25bc' : '\u25b2')}`;
const expectedNextValueColour = expectedValue < stock.val ? ColourRed : ColourGreen;
expectedNextValue.className = ColourTextPre + expectedNextValueColour;

Expand Down

0 comments on commit d2cdde9

Please sign in to comment.