<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://my.curse.com/utility/FeedStylesheets/rss.xsl" media="screen"?><?xml-stylesheet type="text/xsl" href="http://my.curse.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>tgunlien's Comments</title><link>http://my.curse.com/members/tgunlien.aspx</link><description /><dc:language>en-US</dc:language><generator>CommunityServer 2008 SP1 (Build: 30619.63)</generator><item><title /><link>http://my.curse.com/members/tgunlien/comments/default.aspx</link><pubDate>Sat, 26 Sep 2009 13:32:43 GMT</pubDate><dc:creator>tomazy</dc:creator><description>a friend made some modifications to update the enhancement rotation, by including FS&amp;gt;ES&amp;gt;ES&amp;gt;FS cycle.&lt;br /&gt;&lt;br /&gt;This checks if FS debuff has been applied to the target, and addSpell ES or FS to the queue.&lt;br /&gt;&lt;br /&gt;--- ShamWow_Enhance.lua	2009-09-25 21:57:53.000000000 +0200&lt;br /&gt;+++ ShamWow_Enhance.lua	2009-09-26 15:22:32.000000000 +0200&lt;br /&gt;@@ -489,6 +489,7 @@ local function RecalcEnhanceQueue(nextCa&lt;br /&gt; &lt;br /&gt;   -- check target debuffs&lt;br /&gt;   local hasSSDebuff = false;&lt;br /&gt;+  local hasFSDebuff = false;&lt;br /&gt;   for i=1,40 do&lt;br /&gt;     local name = UnitDebuff(&amp;quot;target&amp;quot;, i);&lt;br /&gt;     if not name then&lt;br /&gt;@@ -496,6 +497,8 @@ local function RecalcEnhanceQueue(nextCa&lt;br /&gt;     end&lt;br /&gt;     if name == stormstrikeName then&lt;br /&gt;       hasSSDebuff = true;&lt;br /&gt;+	elseif name == flameshockName then&lt;br /&gt;+	  hasFSDebuff = true;&lt;br /&gt;     end&lt;br /&gt;   end&lt;br /&gt; &lt;br /&gt;@@ -586,7 +589,11 @@ local function RecalcEnhanceQueue(nextCa&lt;br /&gt;     end&lt;br /&gt;     &lt;br /&gt;     if (not ranged) and earthshockCastable then&lt;br /&gt;-      addSpell(earthshockName);&lt;br /&gt;+	  if hasFSDebuff == false then&lt;br /&gt;+		addSpell(flameshockName);&lt;br /&gt;+	  else&lt;br /&gt;+        addSpell(earthshockName);&lt;br /&gt;+	  end&lt;br /&gt;     end&lt;br /&gt;     &lt;br /&gt;     if lavalashCastable then&lt;br /&gt;</description></item></channel></rss>