diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index a070c0b0b..f190150f3 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -10,8 +10,7 @@
-
-
+
@@ -35,20 +34,10 @@
-
-
-
-
-
-
-
-
-
-
-
+
-
+
@@ -67,6 +56,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -147,18 +156,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
@@ -177,7 +174,6 @@
-
@@ -223,6 +219,7 @@
+
@@ -767,7 +764,7 @@
-
+
1411382351159
@@ -929,11 +926,15 @@
1413620688438
1413620688438
-
+
+ 1413622665156
+ 1413622665156
+
+
-
+
@@ -1031,7 +1032,6 @@
-
@@ -1056,7 +1056,8 @@
-
+
+
@@ -1068,20 +1069,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -1474,7 +1461,7 @@
-
+
@@ -1492,6 +1479,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PlotSquared/src/com/intellectualcrafters/plot/AbstractFlag.java b/PlotSquared/src/com/intellectualcrafters/plot/AbstractFlag.java
index 9b1c942b9..9632dd469 100644
--- a/PlotSquared/src/com/intellectualcrafters/plot/AbstractFlag.java
+++ b/PlotSquared/src/com/intellectualcrafters/plot/AbstractFlag.java
@@ -17,7 +17,7 @@ public class AbstractFlag {
* in length
*/
public AbstractFlag(String key) {
- if (!StringUtils.isAlpha(key)) {
+ if (!StringUtils.isAlpha(key.replaceAll("_", "").replaceAll("-", ""))) {
throw new IllegalArgumentException("Flag must be alphabetic characters");
}
if (key.length() > 16) {