Continue the loop do not break it.

This commit is contained in:
Len 2022-10-03 19:39:41 +02:00
parent 7fcfb2321f
commit 3bdaa798c3

View File

@ -31,7 +31,7 @@ public class RegexManager {
private static void loadEmotes() {
emotes.clear();
for(ChatFilter chatFilter : chatFilters) {
if (chatFilter.getType() != FilterType.EMOTE) return;
if (chatFilter.getType() != FilterType.EMOTE) continue;
emotes.add(chatFilter);
emotesList.add(chatFilter.getRegex());