Skip to content

Commit

Permalink
fix 0 charges available message
Browse files Browse the repository at this point in the history
  • Loading branch information
MTOnline69 committed Oct 17, 2024
1 parent f4fa81e commit 1cd7fee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ object ChocolateFactoryTimeTowerManager {
}
}

if (currentCharges() < maxCharges()) {
if (currentCharges() > 0 && currentCharges() < maxCharges()) {
if (!config.timeTowerWarning || timeTowerActive()) return
if (warnedAboutLatestCharge) return
ChatUtils.clickableChat(
Expand Down

0 comments on commit 1cd7fee

Please sign in to comment.