diff --git a/Server/src/main/java/core/game/content/global/shop/Shop.kt b/Server/src/main/java/core/game/content/global/shop/Shop.kt index 1ae9e865e..08034c357 100644 --- a/Server/src/main/java/core/game/content/global/shop/Shop.kt +++ b/Server/src/main/java/core/game/content/global/shop/Shop.kt @@ -708,7 +708,7 @@ open class Shop @JvmOverloads constructor( open fun getBuyPrice(item: Item, player: Player): Int { var item = item item = Item(item.id, 1) - var price = item.definition.maxValue + var price = item.definition.value val sellVal = getSellingValue(item, player) if (price < sellVal) { price = getSellingValue(player, 0, item) + sellVal - (sellVal - item.definition.maxValue)