mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-19 05:49:32 +02:00
Fixed Settings errors with proper labeling
This commit is contained in:
parent
6145b75350
commit
b459a0faab
@ -393,7 +393,20 @@ export const Setting: Array<Setting> = [
|
|||||||
{
|
{
|
||||||
key: SettingKeys.Reroll_Target,
|
key: SettingKeys.Reroll_Target,
|
||||||
label: "Reroll Target",
|
label: "Reroll Target",
|
||||||
options: ["Reroll", "Items", "Shop"],
|
options: [
|
||||||
|
{
|
||||||
|
value:"Reroll",
|
||||||
|
label: i18next.t("settings:Reroll")
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value:"Items",
|
||||||
|
label: i18next.t("settings:Items")
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value:"Shop",
|
||||||
|
label: i18next.t("settings:Shop")
|
||||||
|
}
|
||||||
|
],
|
||||||
default: 1,
|
default: 1,
|
||||||
type: SettingType.DISPLAY
|
type: SettingType.DISPLAY
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user