mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 01:37:37 +00:00
Remove _ from tree type as easy fix for actually typing the correct tree type
This commit is contained in:
parent
8369277e05
commit
97d73889cc
@ -162,7 +162,7 @@ public class TreeGenerator {
|
|||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public static TreeType lookup(String name) {
|
public static TreeType lookup(String name) {
|
||||||
return lookup.get(name.toLowerCase(Locale.ROOT));
|
return lookup.get(name.replace("_", "").toLowerCase(Locale.ROOT));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user