Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
FileManager: fix updating custom lists
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFaser committed Dec 15, 2023
1 parent 3b5903e commit 4a76658
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/net/flectone/chat/manager/FileManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ public void update() {

resourceFile.getKeys(true).parallelStream()
.filter(string -> {
if (string.contains("default.player-message.patterns.list.")
|| string.contains("default.color.list.")) return false;
if (!file.contains(string)) return true;

Object objectA = file.get(string);
Expand Down

0 comments on commit 4a76658

Please sign in to comment.