From 39bc12b58206b5e9855ed3055d0f581cd1495cee Mon Sep 17 00:00:00 2001 From: Kinglykrab <89047260+Kinglykrab@users.noreply.github.com> Date: Mon, 28 Feb 2022 19:59:34 -0500 Subject: [PATCH] [Bug Fix] Removed Lua Event Argument Dispatch. Fix accidentally removal of argument dispatch for EVENT_CONSIDER_CORPSE in https://github.com/EQEmu/Server/pull/2015 --- zone/lua_parser.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/zone/lua_parser.cpp b/zone/lua_parser.cpp index 5183f5aaa..f1b66b1c7 100644 --- a/zone/lua_parser.cpp +++ b/zone/lua_parser.cpp @@ -229,6 +229,7 @@ LuaParser::LuaParser() { PlayerArgumentDispatch[EVENT_WARP] = handle_player_warp; PlayerArgumentDispatch[EVENT_COMBINE] = handle_player_quest_combine; PlayerArgumentDispatch[EVENT_CONSIDER] = handle_player_consider; + PlayerArgumentDispatch[EVENT_CONSIDER_CORPSE] = handle_player_consider_corpse; PlayerArgumentDispatch[EVENT_EQUIP_ITEM_CLIENT] = handle_player_equip_item; PlayerArgumentDispatch[EVENT_UNEQUIP_ITEM_CLIENT] = handle_player_equip_item;