Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-10 05:20:04 +01:00
Fix handling of empty strings passed to Block/ItemType
Dieser Commit ist enthalten in:
Ursprung
29fd98879d
Commit
71fc98ba1c
@ -236,6 +236,10 @@ public enum BlockType {
|
|||||||
*/
|
*/
|
||||||
public static BlockType lookup(String name, boolean fuzzy) {
|
public static BlockType lookup(String name, boolean fuzzy) {
|
||||||
String testName = name.replace(" ", "").toLowerCase();
|
String testName = name.replace(" ", "").toLowerCase();
|
||||||
|
|
||||||
|
if (testName.length() == 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
BlockType type = lookup.get(testName);
|
BlockType type = lookup.get(testName);
|
||||||
|
|
||||||
|
@ -414,6 +414,10 @@ public enum ItemType {
|
|||||||
*/
|
*/
|
||||||
public static ItemType lookup(String name, boolean fuzzy) {
|
public static ItemType lookup(String name, boolean fuzzy) {
|
||||||
String testName = name.replace(" ", "").toLowerCase();
|
String testName = name.replace(" ", "").toLowerCase();
|
||||||
|
|
||||||
|
if (testName.length() == 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
ItemType type = lookup.get(testName);
|
ItemType type = lookup.get(testName);
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren