From b8eff702df470b3d5eadeb0ebc0f66281c08a326 Mon Sep 17 00:00:00 2001 From: Athrogate Date: Tue, 10 Jul 2018 09:46:54 -0400 Subject: [PATCH] Exposing get_instance_timer to lua --- zone/lua_general.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/zone/lua_general.cpp b/zone/lua_general.cpp index 280c6ad9b..0474efd75 100644 --- a/zone/lua_general.cpp +++ b/zone/lua_general.cpp @@ -1684,6 +1684,7 @@ luabind::scope lua_register_general() { luabind::def("destroy_instance", &lua_destroy_instance), luabind::def("update_instance_timer", &lua_update_instance_timer), luabind::def("get_instance_id", &lua_get_instance_id), + luabind::def("get_instance_timer", &lua_get_instance_timer), luabind::def("get_characters_in_instance", &lua_get_characters_in_instance), luabind::def("assign_to_instance", &lua_assign_to_instance), luabind::def("assign_group_to_instance", &lua_assign_group_to_instance),