diff --git a/zone/lua_parser_events.cpp b/zone/lua_parser_events.cpp index 9954f4aff..089201512 100644 --- a/zone/lua_parser_events.cpp +++ b/zone/lua_parser_events.cpp @@ -163,21 +163,6 @@ void handle_npc_single_client( lua_setfield(L, -2, "other"); } -void handle_npc_single_npc( - QuestInterface *parse, - lua_State* L, - NPC* npc, - Mob *init, - std::string data, - uint32 extra_data, - std::vector *extra_pointers -) { - Lua_NPC l_npc(reinterpret_cast(init)); - luabind::adl::object l_npc_o = luabind::adl::object(L, l_npc); - l_npc_o.push(L); - lua_setfield(L, -2, "other"); -} - void handle_npc_task_accepted( QuestInterface *parse, lua_State* L, diff --git a/zone/lua_parser_events.h b/zone/lua_parser_events.h index b48fa2f03..caca824d2 100644 --- a/zone/lua_parser_events.h +++ b/zone/lua_parser_events.h @@ -60,16 +60,6 @@ void handle_npc_single_client( std::vector *extra_pointers ); -void handle_npc_single_npc( - QuestInterface *parse, - lua_State* L, - NPC* npc, - Mob *init, - std::string data, - uint32 extra_data, - std::vector *extra_pointers -); - void handle_npc_task_accepted( QuestInterface *parse, lua_State* L,