Skip to content

Commit

Permalink
ensure messages initialized into mutable list
Browse files Browse the repository at this point in the history
  • Loading branch information
rfresh2 committed Dec 15, 2023
1 parent 2a36fa3 commit c5cc3ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/zenith/util/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,12 @@ public static final class Spammer {
public long delayTicks = 200;
public boolean randomOrder = false;
public boolean appendRandom = false;
public List<String> messages = asList(
public ArrayList<String> messages = new ArrayList<>(asList(
"ZenithProxy on top!",
"I just skipped queue thanks to ZenithProxy!",
"I love undertime slopper!",
">odpay supremacy"
);
));
}

public static final class AutoReply {
Expand Down

0 comments on commit c5cc3ba

Please sign in to comment.