Fixed appearance validation

Implemented proper facial hair validation
Implemented transmog Set
fix interaction of spells like Shadowmeld with Threat reducing effects
This commit is contained in:
hondacrx
2017-08-24 18:01:44 -04:00
parent 7934d51702
commit 0707f9b377
71 changed files with 2968 additions and 632 deletions
+1 -3
View File
@@ -5575,9 +5575,7 @@ namespace Game.Spells
if (!strict && m_casttime == 0)
return SpellCastResult.SpellCastOk;
var pair = GetMinMaxRange(strict);
float minRange = pair.Item1;
float maxRange = pair.Item2;
(float minRange, float maxRange) = GetMinMaxRange(strict);
// get square values for sqr distance checks
minRange *= minRange;