Skip to content
This repository has been archived by the owner on Apr 17, 2021. It is now read-only.

Commit

Permalink
ordering of poe.ninja rates
Browse files Browse the repository at this point in the history
  • Loading branch information
aRTy42 committed Oct 31, 2017
1 parent b53b297 commit cc02236
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resources/ahk/POE-ItemInfo.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -6910,7 +6910,8 @@ ConvertCurrency(ItemName, ItemStats, ByRef dataSource)
result := []

CurrencyDataRates := Globals.Get("CurrencyDataRates")
For league, ninjaRates in CurrencyDataRates {
For idx, league in ["Standard", "Hardcore", "tmpstandard", "tmphardcore"] {
ninjaRates := CurrencyDataRates[league]
ChaosRatio := ninjaRates[ItemName].OwnQuantity ":" ninjaRates[ItemName].ChaosQuantity
ChaosMult := ninjaRates[ItemName].ChaosQuantity / ninjaRates[ItemName].OwnQuantity
ValueInChaos := (ChaosMult * StackSize)
Expand Down

0 comments on commit cc02236

Please sign in to comment.