Skip to content

Commit

Permalink
= Status hud fix
Browse files Browse the repository at this point in the history
  • Loading branch information
May2Beez committed Jan 5, 2024
1 parent 4b5d353 commit dcafa38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/jelly/farmhelperv2/hud/StatusHUD.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ protected void getLines(List<String> lines, boolean example) {

if (BanInfoWS.getInstance().isRunning() && FarmHelperConfig.banwaveCheckerEnabled && BanInfoWS.getInstance().isConnected()) {
tempLines.add("Staff bans in the last " + BanInfoWS.getInstance().getMinutes() + " minutes: " + BanInfoWS.getInstance().getStaffBans());
lines.add("Bans in the last 15 minutes");
lines.add("detected by FarmHelper: " + BanInfoWS.getInstance().getBansByMod());
tempLines.add("Bans in the last 15 minutes");
tempLines.add("detected by FarmHelper: " + BanInfoWS.getInstance().getBansByMod());
} else if (!BanInfoWS.getInstance().isConnected() && FarmHelperConfig.banwaveCheckerEnabled) {
tempLines.add("Connecting to the analytics server...");
}
Expand Down

0 comments on commit dcafa38

Please sign in to comment.