Fix: Fixed broken translations for some daily quests
This commit is contained in:
parent
66d01c4992
commit
1ba7f0d8de
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "UwUifier",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"main": "src/mod.js",
|
||||
"license": "See License file",
|
||||
"author": "Kaeno",
|
||||
|
12
src/mod.js
12
src/mod.js
@ -70,6 +70,18 @@ class Mod {
|
||||
if (value.includes("{durability}")) {
|
||||
continue;
|
||||
}
|
||||
if (value.includes("{target}")) {
|
||||
continue;
|
||||
}
|
||||
if (value.includes("{kill}")) {
|
||||
continue;
|
||||
}
|
||||
if (value.includes("{Location}")) {
|
||||
continue;
|
||||
}
|
||||
if (value.includes("{exitName}")) {
|
||||
continue;
|
||||
}
|
||||
if (value.includes("CHARACTER")) {
|
||||
enlocale[localekey] = "CHAWAWCTER ^-^";
|
||||
continue;
|
||||
|
16
src/mod.ts
16
src/mod.ts
@ -93,6 +93,22 @@ class Mod implements IPostDBLoadMod
|
||||
{
|
||||
continue
|
||||
}
|
||||
if (value.includes("{target}"))
|
||||
{
|
||||
continue
|
||||
}
|
||||
if (value.includes("{kill}"))
|
||||
{
|
||||
continue
|
||||
}
|
||||
if (value.includes("{Location}"))
|
||||
{
|
||||
continue
|
||||
}
|
||||
if (value.includes("{exitName}"))
|
||||
{
|
||||
continue
|
||||
}
|
||||
if (value.includes("CHARACTER"))
|
||||
{
|
||||
enlocale[localekey] = "CHAWAWCTER ^-^"
|
||||
|
Loading…
x
Reference in New Issue
Block a user