Fix Hyper Potion price (#4737)
This commit is contained in:
parent
1241cbe79f
commit
0fda9d6cd6
1 changed files with 1 additions and 1 deletions
|
@ -578,7 +578,7 @@ const struct Item gItemsInfo[] =
|
||||||
[ITEM_HYPER_POTION] =
|
[ITEM_HYPER_POTION] =
|
||||||
{
|
{
|
||||||
.name = _("Hyper Potion"),
|
.name = _("Hyper Potion"),
|
||||||
.price = (I_PRICE >= GEN_2 || I_PRICE <= GEN_6) ? 1200 : 1500,
|
.price = (I_PRICE >= GEN_2 && I_PRICE <= GEN_6) ? 1200 : 1500,
|
||||||
.holdEffectParam = 120,
|
.holdEffectParam = 120,
|
||||||
.description = COMPOUND_STRING(
|
.description = COMPOUND_STRING(
|
||||||
"Restores the HP of\n"
|
"Restores the HP of\n"
|
||||||
|
|
Loading…
Reference in a new issue