working sledgehammer item to take down walls

This commit is contained in:
minjaesong
2023-09-05 22:47:40 +09:00
parent 274be20e25
commit 70b9cebbd0
9 changed files with 212 additions and 11 deletions

View File

@@ -83,7 +83,7 @@ fun getKeycapFkeys(n: Int) = when (n) {
fun List<Int>.toJavaString(): String {
val sb = StringBuilder()
this.forEach {
this.subList(0, this.size).forEach {
if (it > 65535) {
val u = it - 65536
sb.append((0xD800 or (u ushr 10).and(1023)).toChar())