1
0
mirror of https://github.com/kami-blue/client synced 2025-02-19 06:37:35 +00:00

Inverted if condition, I'm too tired for this shit

This commit is contained in:
Dominika 2020-05-26 21:58:48 -04:00
parent f5a2f5905d
commit 86ba7be9be
No known key found for this signature in database
GPG Key ID: B4A5A6DCA70F861F

View File

@ -55,7 +55,7 @@ class LagNotifier : Module() {
} else {
"Server Not Responding! "
}
if (hasUnpaused && pauseDuringLag.value && BaritoneAPI.getProvider().primaryBaritone.customGoalProcess.goal == null) {
if (hasUnpaused && pauseDuringLag.value && BaritoneAPI.getProvider().primaryBaritone.customGoalProcess.goal != null) {
if (feedback.value) MessageSendHelper.sendBaritoneMessage("Paused due to lag!")
pause()
hasUnpaused = false