Skip to content

Commit

Permalink
refactor: Naming
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelsa committed May 25, 2026
1 parent 20a8e50 commit bfb8f9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
*/
public enum PlayerStatusEnum {
ROARING_KITTY("Roaring Kitty", 50, new BigDecimal("8")),
DIAMOND_HANDS("Diamond Hands", 10, new BigDecimal("3")),
PAPER_HANDS("Paper Hands", 100, new BigDecimal("2")),
SPECULATOR("Speculator", 20, new BigDecimal("2")),
DIAMOND_HANDS("Diamond Hands", 10, new BigDecimal("3")),
INVESTOR("Investor", 10, new BigDecimal("1.2")),
NOVICE("Novice", 0, BigDecimal.ZERO);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public Parent createContent() {
*/
@Override
public Parent createNavigation() {
return UIFactory.createNavigation("Transactions",
return UIFactory.createNavigation("Archive",
List.of("Home"),
() -> SceneManager.switchTo(SceneFactory.createExchangeView(true)));
}
Expand Down

0 comments on commit bfb8f9b

Please sign in to comment.