Skip to content

Commit

Permalink
fix druid aquatic/cat/travel form number. bump revision 5
Browse files Browse the repository at this point in the history
  • Loading branch information
dfherr committed Dec 26, 2019
1 parent 4d57755 commit 071e933
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion ClassModules/Classic/Druid.lua
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,10 @@ function Druid:GetStanceThreatMod()
if form == 1 then
self.passiveThreatModifiers = 1.3 * self.feralinstinctMod
self.isTanking = true
elseif form == 2 then
elseif form == 2 or form == 3 then
-- if aquatic form is not learnt, druid cat form is 2 and travel form 3
-- else aquatic form is 2 and cat form 3.
-- should be fine, druids don't dps in travel or aquatic form xD
self.passiveThreatModifiers = 0.71
else
self.passiveThreatModifiers = 1
Expand Down
2 changes: 1 addition & 1 deletion LibThreatClassic2.lua
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ if _G.WOW_PROJECT_ID ~= _G.WOW_PROJECT_CLASSIC then return end

_G.THREATLIB_LOAD_MODULES = false -- don't load modules unless we update this file

local MAJOR, MINOR = "LibThreatClassic2", 4 -- Bump minor on changes, Major is constant lib identifier
local MAJOR, MINOR = "LibThreatClassic2", 5 -- Bump minor on changes, Major is constant lib identifier
assert(LibStub, MAJOR .. " requires LibStub")

-- if this version or a newer one is already installed, go no further
Expand Down

0 comments on commit 071e933

Please sign in to comment.