Corrected scroll exchange rate

This commit is contained in:
ceikry 2021-08-17 10:08:10 -05:00
parent b53c005b0f
commit f9d4cf83a3

View file

@ -79,7 +79,7 @@ object BogrogPouchSwapper {
if(item == null) item = SummoningPouch.get(SummoningScroll.forItemId(itemID)?.pouch ?: -1).also { isScroll = true }
item ?: return 0.0
var shardQuantity = item.items[item.items.size - 1].amount * 0.7
if(isScroll) shardQuantity /= 10.0
if(isScroll) shardQuantity /= 20.0
return shardQuantity
}
}