mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-21 22:41:29 +00:00
[Fix] Fix illusions (#1389)
This commit is contained in:
parent
e285a88e13
commit
4a067e4e9b
27
zone/mob.cpp
27
zone/mob.cpp
@ -1859,19 +1859,20 @@ void Mob::SendIllusionPacket(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// update internal values for mob
|
// update internal values for mob
|
||||||
size = (in_size <= 0.0f) ? GetSize() : in_size;
|
// TODO: Move this to its own SetIllusion function later
|
||||||
texture = new_texture;
|
// size = (in_size <= 0.0f) ? GetSize() : in_size;
|
||||||
helmtexture = new_helmtexture;
|
// texture = new_texture;
|
||||||
haircolor = new_haircolor;
|
// helmtexture = new_helmtexture;
|
||||||
beardcolor = new_beardcolor;
|
// haircolor = new_haircolor;
|
||||||
eyecolor1 = new_eyecolor1;
|
// beardcolor = new_beardcolor;
|
||||||
eyecolor2 = new_eyecolor2;
|
// eyecolor1 = new_eyecolor1;
|
||||||
hairstyle = new_hairstyle;
|
// eyecolor2 = new_eyecolor2;
|
||||||
luclinface = new_luclinface;
|
// hairstyle = new_hairstyle;
|
||||||
beard = new_beard;
|
// luclinface = new_luclinface;
|
||||||
drakkin_heritage = new_drakkin_heritage;
|
// beard = new_beard;
|
||||||
drakkin_tattoo = new_drakkin_tattoo;
|
// drakkin_heritage = new_drakkin_heritage;
|
||||||
drakkin_details = new_drakkin_details;
|
// drakkin_tattoo = new_drakkin_tattoo;
|
||||||
|
// drakkin_details = new_drakkin_details;
|
||||||
|
|
||||||
auto outapp = new EQApplicationPacket(OP_Illusion, sizeof(Illusion_Struct));
|
auto outapp = new EQApplicationPacket(OP_Illusion, sizeof(Illusion_Struct));
|
||||||
Illusion_Struct *is = (Illusion_Struct *) outapp->pBuffer;
|
Illusion_Struct *is = (Illusion_Struct *) outapp->pBuffer;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user