Skip to content

Commit ed2b3d7

Browse files
committed
New patch
1 parent ae70733 commit ed2b3d7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

FieldGuide.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -882,9 +882,9 @@ function FieldGuide_OnEvent(self, event, ...)
882882
FieldGuideOptions.pins = {}
883883
end
884884
FieldGuideOptions = FieldGuideOptions or {}
885-
FieldGuideOptions.showTalents = FieldGuideOptions.showTalents
886-
FieldGuideOptions.showEnemySpells = FieldGuideOptions.showEnemySpells
887-
FieldGuideOptions.showKnownSpells = FieldGuideOptions.showKnownSpells
885+
FieldGuideOptions.showTalents = FieldGuideOptions.showTalents or true
886+
FieldGuideOptions.showEnemySpells = FieldGuideOptions.showEnemySpells or true
887+
FieldGuideOptions.showKnownSpells = FieldGuideOptions.showKnownSpells or false
888888
FieldGuideOptions.unwantedSpells = FieldGuideOptions.unwantedSpells or {}
889889
FieldGuideOptions.minimapTable = FieldGuideOptions.minimapTable or {}
890890
FieldGuideOptions.pins = FieldGuideOptions.pins or {}
@@ -900,7 +900,7 @@ function FieldGuide_OnEvent(self, event, ...)
900900
elseif event == "SKILL_LINES_CHANGED" then
901901
if selectedClass == "WEAPONS" then
902902
hideUnwantedWeapons()
903-
updateButtons()
903+
updateWeapons()
904904
end
905905
elseif event == "UNIT_PET" then
906906
if selectedClass == "HUNTER_PETS" or selectedClass == "WARLOCK_PETS" then

FieldGuide.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 11302
1+
## Interface: 11303
22
## Title: Field Guide
33
## Notes: Shows when spells are trainable and how much each spell costs to train, and other stuff.
44
## Author: cloudbells

0 commit comments

Comments
 (0)