Skip to content

Commit 8969ae6

Browse files
change minimum xp for daily removal to 1
1 parent f33aceb commit 8969ae6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/discordjug/javabot/systems/help/HelpExperienceJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public void execute() {
3333
try {
3434
helpAccountRepository.removeExperienceFromAllAccounts(
3535
// just get the config for the first guild the bot is in, as it's not designed to work in multiple guilds anyway
36-
botConfig.get(jda.getGuilds().get(0)).getHelpConfig().getDailyExperienceSubtraction(), 5, 50);
36+
botConfig.get(jda.getGuilds().get(0)).getHelpConfig().getDailyExperienceSubtraction(), 1, 50);
3737
} catch (DataAccessException e) {
3838
ExceptionLogger.capture(e, DbHelper.class.getSimpleName());
3939
}

0 commit comments

Comments
 (0)