HK - Fix typos in option names

Fixed max charm and max geo cost display names.
This commit is contained in:
KonoTyran 2022-07-20 21:45:01 -07:00 committed by KonoTyran
parent 9e972eafb2
commit 79b851189f
1 changed files with 2 additions and 1 deletions

View File

@ -222,6 +222,7 @@ class MinimumCharmPrice(Range):
class MaximumCharmPrice(MinimumCharmPrice): class MaximumCharmPrice(MinimumCharmPrice):
"""The maximum charm price in the range of prices that an item should cost for Salubra's shop item which also """The maximum charm price in the range of prices that an item should cost for Salubra's shop item which also
carry a charm cost.""" carry a charm cost."""
display_name = "Maximum Charm Requirement"
default = 20 default = 20
@ -235,7 +236,7 @@ class MinimumGeoPrice(Range):
class MaximumGeoPrice(Range): class MaximumGeoPrice(Range):
"""The maximum geo price for items in geo shops.""" """The maximum geo price for items in geo shops."""
display_name = "Minimum Geo Price" display_name = "Maximum Geo Price"
range_start = 1 range_start = 1
range_end = 2000 range_end = 2000
default = 400 default = 400