players can dig out dirts barehandedly

This commit is contained in:
minjaesong
2024-02-17 17:04:06 +09:00
parent 701edbeaff
commit 84222f0d98
4 changed files with 41 additions and 44 deletions

View File

@@ -687,7 +687,7 @@ object Common {
}
fun decodeToUUID(str: String): UUID {
val code = str.replace(" ", "").trim()
val code = str.uppercase().replace(" ", "").trim()
val b = PasswordBase32.decode(code + (if (code.length == 25) "Y" else ""), 16)
/*b.forEach {