mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-05 07:16:37 +00:00
[Bug Fix] Fix Appearance Issues (#3520)
* [Bug Fix] Fix Appearance Issues # Notes - Changing race, gender, or texture of a Mob could result in it changing sizes due to use not sending the size as part of the appearance packet. - Also converts the parameterized method to a struct parameter so that we can optionally send things without back-filling multiple arguments. * Gender cleanup. * Fix. * Formatting.
This commit is contained in:
+8
-7
@@ -201,13 +201,14 @@ public:
|
||||
void forcedoorclose(uint32 doorid, bool altmode);
|
||||
void toggledoorstate(uint32 doorid);
|
||||
bool isdooropen(uint32 doorid);
|
||||
void npcrace(int race_id);
|
||||
void npcgender(int gender_id); void npcsize(int newsize);
|
||||
void npctexture(int newtexture);
|
||||
void playerrace(int race_id);
|
||||
void playergender(int gender_id);
|
||||
void playersize(int newsize);
|
||||
void playertexture(int newtexture);
|
||||
void npcrace(uint16 race_id);
|
||||
void npcgender(uint8 gender_id);
|
||||
void npcsize(float size);
|
||||
void npctexture(uint8 texture);
|
||||
void playerrace(uint16 race_id);
|
||||
void playergender(uint8 gender_id);
|
||||
void playersize(float size);
|
||||
void playertexture(uint8 texture);
|
||||
void playerfeature(const char* feature, int setting);
|
||||
void npcfeature(const char* feature, int setting);
|
||||
void popup(const char *title, const char *text, uint32 popupid, uint32 buttons, uint32 Duration);
|
||||
|
||||
Reference in New Issue
Block a user