fix: error with dragon names

This commit is contained in:
Gerard Gascón 2025-04-09 21:31:12 +02:00
parent 1378252483
commit 7c54b60337
3 changed files with 38 additions and 5 deletions

View file

@ -33,6 +33,7 @@ var alphabet: Dictionary = {
'X': '23',
'Y': '24',
'Z': '25',
' ': '26'
}
var alphabet_inverse: Dictionary = {
@ -62,6 +63,7 @@ var alphabet_inverse: Dictionary = {
'23': 'X',
'24': 'Y',
'25': 'Z',
'26': ' '
}