Fixed rune font spacing & invalid unicode conversion method

This commit is contained in:
Anuken
2025-10-03 05:59:08 +09:00
parent 53ef8d5ea0
commit b31df41018
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -29,7 +29,7 @@ public class RuneOverlay extends OverlayFloor{
public static String bytesToString(byte[] data){ public static String bytesToString(byte[] data){
StringBuilder result = new StringBuilder(); StringBuilder result = new StringBuilder();
for(byte b : data){ for(byte b : data){
result.append((char)(b & 0xff + unicodeOffset)); result.append((char)((b & 0xff) + unicodeOffset));
} }
return result.toString(); return result.toString();
} }