Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
Removed a typo in the new savestates strings and fixed a bug where the entire local documentation would be deleted if it was already built when automatically uploading.
  • Loading branch information
YanWittmann committed Jan 19, 2021
1 parent dfff0ff commit 7fd8537
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion intellij/play/res/lang/english.lang
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ mainFramePlayerInputNoCommand:[[red:You cannot do that]]
savestateEnterName:Enter a name for the [[gold:savestate]]
savestateInvalidName:Enter a valid name for the [[gold:savestate]]
savestateSavestateAvailable:There is a [[gold:savestate]] available for this adventure.
savestateSavestatesAvailable:There are [[gold:savestate]] available for this adventure.
savestateSavestatesAvailable:There are [[gold:savestates]] available for this adventure.
savestateSelectSavestate:Which [[gold:savestate]] do you want to select?
savestateStartNewGame:Start a new game
savestateCreatedSuccess:Created [[gold:savestate]] [[green:{1}]]
Expand Down
2 changes: 1 addition & 1 deletion other/buildfiles/rpgenginepreparer/src/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ private static void createAndUploadDocumentation() {
System.out.println("\nCreate and upload documentation\n");
if (FileUtils.directoryExists("../../rpg-engine-docs/site")) {
System.out.println("Deleting local documentation");
errorMessageIfFalse(FileUtils.deleteDirectory("../../rpg-engine-docs"), "Unable to delete current documentation");
errorMessageIfFalse(FileUtils.deleteDirectory("../../rpg-engine-docs/site"), "Unable to delete current documentation");
}

System.out.println("Creating local documentation");
Expand Down

0 comments on commit 7fd8537

Please sign in to comment.