ß wird nicht mehr zu SS
This commit is contained in:
parent
0d569fea3b
commit
e8c798477f
@ -6028,7 +6028,7 @@ class Level {
|
|||||||
{
|
{
|
||||||
this.words = [];
|
this.words = [];
|
||||||
for (let i = 0, n = words.length; i < n; i++) {
|
for (let i = 0, n = words.length; i < n; i++) {
|
||||||
this.words.push(words[i].toUpperCase());
|
this.words.push(words[i].replace(/ß/g, "ẞ").toUpperCase());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -82,7 +82,7 @@ export class Level {
|
|||||||
{
|
{
|
||||||
this.words = [];
|
this.words = [];
|
||||||
for (let i = 0, n = words.length; i < n; i++) {
|
for (let i = 0, n = words.length; i < n; i++) {
|
||||||
this.words.push(words[i].toUpperCase());
|
this.words.push(words[i].replace(/ß/g, "ẞ").toUpperCase());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user