geforkt von Mirrors/FastAsyncWorldEdit
Lookup by id if the string passed to Block/ItemType.lookup() is an integer
Dieser Commit ist enthalten in:
Ursprung
0bea058328
Commit
2f2d3f8045
@ -234,8 +234,12 @@ public enum BlockType {
|
||||
* @return
|
||||
*/
|
||||
public static BlockType lookup(String name, boolean fuzzy) {
|
||||
try {
|
||||
return fromID(Integer.parseInt(name));
|
||||
} catch (NumberFormatException e) {
|
||||
return StringUtil.lookup(lookup, name, fuzzy);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get block numeric ID.
|
||||
|
@ -412,8 +412,12 @@ public enum ItemType {
|
||||
* @return
|
||||
*/
|
||||
public static ItemType lookup(String name, boolean fuzzy) {
|
||||
try {
|
||||
return fromID(Integer.parseInt(name));
|
||||
} catch (NumberFormatException e) {
|
||||
return StringUtil.lookup(lookup, name, fuzzy);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get item numeric ID.
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren