Fix Hyper Potion price (#4737)

This commit is contained in:
Bassoonian 2024-06-07 21:04:03 +02:00 committed by GitHub
parent 1241cbe79f
commit 0fda9d6cd6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -578,7 +578,7 @@ const struct Item gItemsInfo[] =
[ITEM_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,
.description = COMPOUND_STRING(
"Restores the HP of\n"