Skip to content

Commit

Permalink
Fix static usage
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinthegreat1 committed Feb 24, 2025
1 parent eac4314 commit 016a726
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,12 @@ public class FossilSolver extends SimpleContainerSolver implements TooltipAdder
private static final Pattern PERCENTAGE_PATTERN = Pattern.compile("Fossil Excavation Progress: (\\d{1,2}.\\d)%");
private static final Pattern CHARGES_PATTERN = Pattern.compile("Chisel Charges Remaining: (\\d{1,2})");


private String percentage;
private static String percentage;
private static double[] probability;
private static int chiselLeft;
private static int chiselLeft = -1;

public FossilSolver() {
super("Fossil Excavator");
percentage = null;
chiselLeft = -1;
}

@Override
Expand Down

0 comments on commit 016a726

Please sign in to comment.