mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-02 02:47:11 +00:00
Lookup by id if the string passed to Block/ItemType.lookup() is an integer
This commit is contained in:
parent
0bea058328
commit
2f2d3f8045
@ -234,7 +234,11 @@ public enum BlockType {
|
||||
* @return
|
||||
*/
|
||||
public static BlockType lookup(String name, boolean fuzzy) {
|
||||
return StringUtil.lookup(lookup, name, fuzzy);
|
||||
try {
|
||||
return fromID(Integer.parseInt(name));
|
||||
} catch (NumberFormatException e) {
|
||||
return StringUtil.lookup(lookup, name, fuzzy);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -412,7 +412,11 @@ public enum ItemType {
|
||||
* @return
|
||||
*/
|
||||
public static ItemType lookup(String name, boolean fuzzy) {
|
||||
return StringUtil.lookup(lookup, name, fuzzy);
|
||||
try {
|
||||
return fromID(Integer.parseInt(name));
|
||||
} catch (NumberFormatException e) {
|
||||
return StringUtil.lookup(lookup, name, fuzzy);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user