Quantcast

Bugfix! Hide Solvent in instances and re-show upon exiting

Jesse Adams [03-01-11 - 21:15]
Bugfix! Hide Solvent in instances and re-show upon exiting
Filename
README
Solvent.lua
diff --git a/README b/README
index 5cb1f17..77d9e42 100644
--- a/README
+++ b/README
@@ -15,6 +15,7 @@ Upcoming Changes:

 Changelog:
 2011-03-01:
+* Bugfix! Hide Solvent in instances and re-show upon exiting
 * Added notification integration with Mik's Scrolling Battle Text
 * Re-worked look and feel of default frame (more simplistic)
 * Only show races for the continent you are currently on
diff --git a/Solvent.lua b/Solvent.lua
index 0ec7d94..00c67b1 100644
--- a/Solvent.lua
+++ b/Solvent.lua
@@ -107,7 +107,21 @@ statusBars = {}
 needToTrainWarningSent = false
 keystones = {}
 solvableWarningSent = {}
+showWhenOutOfInstance = false
 function SolventGetCurrentArtifacts()
+  if IsInInstance() then
+    if SolventSolveFrame:IsVisible() then
+      solventConfig[solventRealm][solventCharacter].enabled = 'no'
+      processConfigChange()
+      showWhenOutOfInstance = true
+    end
+    return
+  elseif not SolventSolveFrame:IsVisible() and showWhenOutOfInstance then
+    solventConfig[solventRealm][solventCharacter].enabled = 'yes'
+    processConfigChange()
+    showWhenOutOfInstance = false
+  end
+
   SetMapToCurrentZone()
   continent = GetCurrentMapContinent();

@@ -469,6 +483,10 @@ local function modify_display(msg, editbox)
     solventConfig[solventRealm][solventCharacter].enabled = 'no'
     processConfigChange()
   elseif command == 'show' then
+    if IsInInstance() then
+      SolventMessage("Solvent is disabled while in an instance! Can't Show!")
+      return
+    end
     solventConfig[solventRealm][solventCharacter].enabled = 'yes'
     processConfigChange()
   elseif command == 'alpha' then