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 -27
View File
@@ -103,32 +103,6 @@ namespace Game.Combat
ThreatManager iThreatManager;
}
public class ThreatManagerEvent : ThreatRefStatusChangeEvent
{
ThreatManagerEvent(UnitEventTypes pType)
: base(pType)
{
iThreatContainer = null;
}
ThreatManagerEvent(UnitEventTypes pType, HostileReference pHostileReference)
: base(pType, pHostileReference)
{
iThreatContainer = null;
}
void setThreatContainer(ThreatContainer pThreatContainer)
{
iThreatContainer = pThreatContainer;
}
ThreatContainer getThreatContainer()
{
return iThreatContainer;
}
ThreatContainer iThreatContainer;
}
public enum UnitEventTypes
{
// Player/Pet Changed On/Offline Status
@@ -141,7 +115,7 @@ namespace Game.Combat
ThreatRefRemoveFromList = 1 << 2,
// Player/Pet Entered/Left Water Or Some Other Place Where It Is/Was Not Accessible For The Creature
ThreatRefAsseccibleStatus = 1 << 3,
ThreatRefAccessibleStatus = 1 << 3,
// Threat List Is Going To Be Sorted (If Dirty Flag Is Set)
ThreatSortList = 1 << 4,