mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Fix import of cards with o with diaeresis (#8803)
This commit is contained in:
parent
1021ff5ab0
commit
e955d47821
1 changed files with 2 additions and 1 deletions
|
@ -10,7 +10,8 @@ public class CardNameUtil {
|
||||||
return name
|
return name
|
||||||
.replace("&", "//")
|
.replace("&", "//")
|
||||||
.replace("Æ", "Ae")
|
.replace("Æ", "Ae")
|
||||||
.replace("ö", "o")
|
.replace("ö", "A")
|
||||||
|
.replace("ö", "o")
|
||||||
.replace("û", "u")
|
.replace("û", "u")
|
||||||
.replace("í", "i")
|
.replace("í", "i")
|
||||||
.replace("â", "a")
|
.replace("â", "a")
|
||||||
|
|
Loading…
Reference in a new issue