Skip to content

Commit

Permalink
Fix join stack
Browse files Browse the repository at this point in the history
  • Loading branch information
Kieaer committed May 4, 2024
1 parent 74ddf1c commit 2a68318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/essentials/Trigger.kt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ object Trigger {

if (data.lastLoginDate != null) {
if ((LocalDate.now().toEpochDay() - data.lastLoginDate!!.toEpochDay()) == 1L) {
data.joinStacks++
data.joinStacks += 1
when {
data.joinStacks >= 15 -> data.expMultiplier = 5.0
data.joinStacks >= 7 -> data.expMultiplier = 2.5
Expand Down

0 comments on commit 2a68318

Please # to comment.