Skip to content

Commit

Permalink
Fixed parsing of island flag placeholders (#942)
Browse files Browse the repository at this point in the history
  • Loading branch information
OmerBenGera committed Feb 24, 2022
1 parent f2ae00d commit c864b8c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -52,7 +52,7 @@ public abstract class PlaceholderHook {
private static final Pattern TOP_CUSTOM_PLACEHOLDER_PATTERN = Pattern.compile("(\\d+)_(.+)");
private static final Pattern MEMBER_PLACEHOLDER_PATTERN = Pattern.compile("member_(.+)");
private static final Pattern VISITOR_LAST_JOIN_PLACEHOLDER_PATTERN = Pattern.compile("visitor_last_join_(.+)");
private static final Pattern ISLAND_FLAG_PLACEHOLDER_PATTERN = Pattern.compile("island_flag_(.+)");
private static final Pattern ISLAND_FLAG_PLACEHOLDER_PATTERN = Pattern.compile("flag_(.+)");

private static final Map<String, PlayerPlaceholderParser> PLAYER_PARSES =
new ImmutableMap.Builder<String, PlayerPlaceholderParser>()
Expand Down

0 comments on commit c864b8c

Please sign in to comment.