[Commands] Cleanup #appearance Command (#3827)

* [Commands] Cleanup #appearance Command

# Notes
- Cleanup messages and logic.
- Cleanup appearance type constants to use a namespace with constexpr instead.
- Cleanup animation constants to use a namespace with constexpr instead.

* Update emu_constants.cpp

* Cleanup
This commit is contained in:
Alex King
2024-01-06 23:24:32 -05:00
committed by GitHub
parent d2f5dc43a6
commit 259add68f5
33 changed files with 330 additions and 237 deletions
+2 -2
View File
@@ -1458,12 +1458,12 @@ void Lua_Client::AssignToInstance(int instance_id) {
void Lua_Client::Freeze() {
Lua_Safe_Call_Void();
self->SendAppearancePacket(AT_Anim, ANIM_FREEZE);
self->SendAppearancePacket(AppearanceType::Animation, Animation::Freeze);
}
void Lua_Client::UnFreeze() {
Lua_Safe_Call_Void();
self->SendAppearancePacket(AT_Anim, ANIM_STAND);
self->SendAppearancePacket(AppearanceType::Animation, Animation::Standing);
}
uint32 Lua_Client::GetAggroCount() {