Skip to content

Commit

Permalink
Config: Fix configs.prop issue (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
Velosh committed Apr 26, 2021
1 parent c59506d commit 30f9446
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/vegazsdev/bobobot/utils/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static String getDefConfig(String prop) {
FileInputStream fileInputStream = null;
try {
Properties getProps = new Properties();
fileInputStream = new FileInputStream("configs/config.prop");
fileInputStream = new FileInputStream("configs/configs.prop");
getProps.load(fileInputStream);
return getProps.getProperty(prop);
} catch (Exception e) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/strings/core-strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<!-- Configuration Files -->

<config_file>config.prop</config_file>
<config_file>configs.prop</config_file>
<possible_hotkeys>! / ; - * \ , .'</possible_hotkeys>
<disp_lang>en, br</disp_lang>

Expand Down

0 comments on commit 30f9446

Please sign in to comment.