Skip to content
This repository was archived by the owner on Jul 7, 2023. It is now read-only.

Commit 2bc80a8

Browse files
committed
Fixed issue with faction names not being able to have the letter 'p' in it. (lowercase)
1 parent b2b94ce commit 2bc80a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/massivecraft/factions/util/MiscUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class MiscUtil {
2020

2121
/// TODO create tag whitelist!!
2222
public static HashSet<String> substanceChars =
23-
new HashSet<>(Arrays.asList("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "plugin", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"));
23+
new HashSet<>(Arrays.asList("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"));
2424

2525
public static EntityType creatureTypeFromEntity(Entity entity) {
2626
if (!(entity instanceof Creature)) {

0 commit comments

Comments
 (0)