From 5b374927f2f0c5401a1a488a153869aea90de562 Mon Sep 17 00:00:00 2001 From: Paul Coene Date: Fri, 12 Apr 2019 19:16:00 -0400 Subject: [PATCH 1/2] Update mob.cpp --- zone/mob.cpp | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/zone/mob.cpp b/zone/mob.cpp index facb6dc77..e6e11fc26 100644 --- a/zone/mob.cpp +++ b/zone/mob.cpp @@ -74,7 +74,7 @@ Mob::Mob( uint8 in_hairstyle, uint8 in_luclinface, uint8 in_beard, - uint32 in_drakkin_heritage, + uint32 in__heritage, uint32 in_drakkin_tattoo, uint32 in_drakkin_details, EQEmu::TintProfile in_armor_tint, @@ -1737,11 +1737,11 @@ void Mob::SendIllusionPacket( new_luclinface = (in_luclinface == 0xFF) ? GetLuclinFace() : in_luclinface; new_beard = (in_beard == 0xFF) ? GetBeard() : in_beard; new_drakkin_heritage = - (in_drakkin_heritage == 0xFF) ? GetDrakkinHeritage() : in_drakkin_heritage; + (in_drakkin_heritage == 0xFFFFFFFF) ? GetDrakkinHeritage() : in_drakkin_heritage; new_drakkin_tattoo = - (in_drakkin_tattoo == 0xFF) ? GetDrakkinTattoo() : in_drakkin_tattoo; + (in_drakkin_tattoo == 0xFFFFFFFF) ? GetDrakkinTattoo() : in_drakkin_tattoo; new_drakkin_details = - (in_drakkin_details == 0xFF) ? GetDrakkinDetails() : in_drakkin_details; + (in_drakkin_details == 0xFFFFFFFF) ? GetDrakkinDetails() : in_drakkin_details; new_aa_title = in_aa_title; size = (in_size <= 0.0f) ? GetSize() : in_size; @@ -1759,12 +1759,9 @@ void Mob::SendIllusionPacket( new_luclinface = luclinface = CastToClient()->GetBaseFace(); new_beard = beard = CastToClient()->GetBaseBeard(); new_aa_title = aa_title = 0xFF; - new_drakkin_heritage = drakkin_heritage - = CastToClient()->GetBaseHeritage(); - new_drakkin_tattoo = drakkin_tattoo - = CastToClient()->GetBaseTattoo(); - new_drakkin_details = drakkin_details - = CastToClient()->GetBaseDetails(); + new_drakkin_heritage = drakkin_heritage = CastToClient()->GetBaseHeritage(); + new_drakkin_tattoo = drakkin_tattoo = CastToClient()->GetBaseTattoo(); + new_drakkin_details = drakkin_details = CastToClient()->GetBaseDetails(); switch (race) { case OGRE: size = 9; From 0426a15fecddf1fb5af09ea6445b219e115648e8 Mon Sep 17 00:00:00 2001 From: Paul Coene Date: Fri, 12 Apr 2019 19:34:28 -0400 Subject: [PATCH 2/2] Update mob.cpp --- zone/mob.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/mob.cpp b/zone/mob.cpp index e6e11fc26..b068905a9 100644 --- a/zone/mob.cpp +++ b/zone/mob.cpp @@ -74,7 +74,7 @@ Mob::Mob( uint8 in_hairstyle, uint8 in_luclinface, uint8 in_beard, - uint32 in__heritage, + uint32 in_drakkin_heritage, uint32 in_drakkin_tattoo, uint32 in_drakkin_details, EQEmu::TintProfile in_armor_tint,