**v3.2.7**
Taracque [08-24-14 - 19:05]
**v3.2.7**
* Fixed: Low level shaman doesn't crash at Lava Burst
diff --git a/Change_log.txt b/Change_log.txt
index 7591340..4e84543 100755
--- a/Change_log.txt
+++ b/Change_log.txt
@@ -1,3 +1,6 @@
+**v3.2.7**
+* Fixed: Low level shaman doesn't crash at Lava Burst
+
**v3.2.6**
* Fixed: Crystal of Instanity and Alchemist's Flask Cooldowns are checked
diff --git a/Elementarist.toc b/Elementarist.toc
index 756001d..1324bd4 100755
--- a/Elementarist.toc
+++ b/Elementarist.toc
@@ -2,7 +2,7 @@
## Title: Elementarist
## Notes: Elemental shaman spell rotation helper
## Author: Taracque, Felmosórongy of Arathor
-## Version: 3.2.6
+## Version: 3.2.7
## SavedVariables: ElementaristDB
## OptionalDeps: OmniCC, SpellFlash
## Dependencies:
diff --git a/modules/elemental.lua b/modules/elemental.lua
index a6bac89..0c4ac17 100755
--- a/modules/elemental.lua
+++ b/modules/elemental.lua
@@ -120,7 +120,7 @@ Elementarist.elemental = {
doFS = true
else -- if fs before lvb, check lvb cd
d = Elementarist:GetSpellCooldownRemaining(Elementarist.SpellList["Lava Burst"])
- if (d <= (timeshift + Elementarist.lastBaseGCD)) then
+ if (d) and (d <= (timeshift + Elementarist.lastBaseGCD)) then
doFS = true
end
end