Fix block/item readable names not having spaces

This commit is contained in:
libraryaddict
2020-08-23 20:11:59 +12:00
parent 4d0fe01bb7
commit 031666546c
4 changed files with 59 additions and 61 deletions

View File

@@ -1965,6 +1965,10 @@ public class ReflectionManager {
}
public static String toReadable(String string) {
return StringUtils.join(splitReadable(string));
return toReadable(string, "");
}
public static String toReadable(String string, String joiner) {
return StringUtils.join(splitReadable(string), joiner);
}
}