groundmarkers: fix 10, 11 & 12 not displaying (#2173)

groundmarkers: fix 10, 11 & 12 not displaying
This commit is contained in:
Kyle
2019-12-29 01:53:56 +00:00
committed by GitHub
parent a854a68af4
commit 9955cef11b

View File

@@ -77,7 +77,7 @@ public class GroundMarkerPlugin extends Plugin
{
private static final String CONFIG_GROUP = "groundMarker";
private static final String MARK = "Mark tile";
private static final Pattern GROUP_MATCHER = Pattern.compile(".*ark tile \\(Group (\\d)\\)");
private static final Pattern GROUP_MATCHER = Pattern.compile(".*ark tile \\(Group (\\d{1,2})\\)");
private static final String UNMARK = "Unmark tile";
private static final String WALK_HERE = "Walk here";
private static final String REGION_PREFIX = "region_";
@@ -513,4 +513,4 @@ public class GroundMarkerPlugin extends Plugin
this.minimapOverlayOpacity = config.minimapOverlayOpacity();
this.thinMarkers = config.thinMarkers();
}
}
}