Skip to content

Commit

Permalink
fixes #107
Browse files Browse the repository at this point in the history
  • Loading branch information
projectdelphai committed Oct 23, 2014
1 parent b63c516 commit 2bb0133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/jadventure/game/menus/MainMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ else if(key.equals("load")) {
key = QueueProvider.take();
if (Player.profileExists(key)) {
String profileName = key;
QueueProvider.offer("Are you sure you want to delete? y/n");
QueueProvider.offer("Are you sure you want to delete " + profileName + "? y/n");
key = QueueProvider.take();
if (key.equals("y")) {
File profile = new File("json/profiles/" + profileName);
Expand Down

0 comments on commit 2bb0133

Please sign in to comment.