mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-11 20:13:55 +00:00
Remove _ from tree type as easy fix for actually typing the correct tree type
This commit is contained in:
@ -162,7 +162,7 @@ public class TreeGenerator {
|
||||
*/
|
||||
@Nullable
|
||||
public static TreeType lookup(String name) {
|
||||
return lookup.get(name.toLowerCase(Locale.ROOT));
|
||||
return lookup.get(name.replace("_", "").toLowerCase(Locale.ROOT));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user