Skip to content

Commit

Permalink
feat: Added a default profile in the config
Browse files Browse the repository at this point in the history
  • Loading branch information
dm94 committed Oct 1, 2024
1 parent efcc13c commit 35f2f72
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ProfileChangerConfig {

@Option("general.bot_profile")
@Dropdown(options = ProfileNames.class)
public String BOT_PROFILE = "";
public String BOT_PROFILE = "config";

@Option("profile_changer.close_bot")
public boolean closeBot = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ public class UrgentDetectorConfig {

@Option("urgent_detector.bot_profile")
@Dropdown(options = ProfileNames.class)
public String botProfile = "";
public String botProfile = "config";
}
2 changes: 1 addition & 1 deletion src/main/java/com/deeme/types/config/Profile.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ public class Profile {

@Option("general.bot_profile")
@Dropdown(options = ProfileNames.class)
public String BOT_PROFILE = "";
public String BOT_PROFILE = "config";
}
2 changes: 1 addition & 1 deletion src/main/resources/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "DmPlugin",
"author": "Dm94Dani",
"version": "2.3.2",
"version": "2.3.3 beta 1",
"minVersion": "1.131",
"supportedVersion": "1.131.2",
"basePackage": "com.deeme",
Expand Down

0 comments on commit 35f2f72

Please sign in to comment.