diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2023-05-25 20:57:51 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2023-05-25 20:57:51 -0400 |
commit | fcd65070900865a9e0b547c49968988abcda5ab9 (patch) | |
tree | 92dca348a8adfad470f149dafa01a95780a895dc /src/gui/LevelSurround.java | |
parent | a5d71e172b7202c5758837d896ffb8cafcb8da96 (diff) | |
download | NPEhero-fcd65070900865a9e0b547c49968988abcda5ab9.tar.gz NPEhero-fcd65070900865a9e0b547c49968988abcda5ab9.tar.bz2 NPEhero-fcd65070900865a9e0b547c49968988abcda5ab9.zip |
Move levels outside of src, prepare for leaderboard writing and other small changes
Diffstat (limited to '')
-rw-r--r-- | src/gui/LevelSurround.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/LevelSurround.java b/src/gui/LevelSurround.java index a94f890..e84071e 100644 --- a/src/gui/LevelSurround.java +++ b/src/gui/LevelSurround.java @@ -43,7 +43,7 @@ public class LevelSurround extends Pane title.getStyleClass().add("t2"); Text artist = new Text(); - artist.setText(level.getArtist()+" - "+difficulty); + artist.setText(level.getArtist()+" - "+difficulty.title); artist.getStyleClass().add("t3"); VBox titleTextBox = new VBox(); |