Skip to content

Commit

Permalink
Fixed item basetype not being used in gem search and iteminfo classif…
Browse files Browse the repository at this point in the history
…ying gems as jewelry
  • Loading branch information
Eruyome committed Dec 11, 2016
1 parent 05a3535 commit 0cbaa8c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion POE-ItemInfo.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -6395,7 +6395,7 @@ ParseItemData(ItemDataText, ByRef RarityLevel="")
RarityLevel := 0
Item.Level := ParseGemLevel(ItemDataText, "Level:")
ItemLevelWord := "Gem Level:"
Item.BaseType := "Jewelry"
Item.BaseType := "Gem"
}
Else
{
Expand Down
4 changes: 4 additions & 0 deletions TradeUpdates.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
The following is a list of what has been updated, starting with 1.1.0

1.2.9
================================================================================================
Fixed ItemInfo classifying Gems as Jewelry.

1.2.8
================================================================================================
Fixed a problem where the item implicit mod was used in the search over total mod (for exmaple implicit Intelligence + explicit Intelligence)
Expand Down
1 change: 1 addition & 0 deletions trade_data/TradeMacro.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,7 @@ TradeFunc_Main(openSearchInBrowser = false, isAdvancedPriceCheck = false, isAdva

; handle gems
If (Item.IsGem) {
RequestParams.xtype := Item.BaseType
If (TradeOpts.GemQualityRange > 0) {
RequestParams.q_min := Item.Quality - TradeOpts.GemQualityRange
RequestParams.q_max := Item.Quality + TradeOpts.GemQualityRange
Expand Down
2 changes: 1 addition & 1 deletion trade_data/Version.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
TradeReleaseVersion := "1.2.8"
TradeReleaseVersion := "1.2.9"
TradeAHKVersionRequired := "1.1.24.01"

0 comments on commit 0cbaa8c

Please sign in to comment.