mirror of
https://github.com/EQEmu/Server.git
synced 2026-02-01 22:53:54 +00:00
[Quest API] Add missing Luabind definitions to lua_general.cpp (#3167)
# Notes - These definitions were missing somehow.
This commit is contained in:
parent
25f5898bae
commit
e1eb1ff738
@ -4269,6 +4269,8 @@ luabind::scope lua_register_general() {
|
||||
luabind::def("add_ldon_loss", &lua_add_ldon_loss),
|
||||
luabind::def("add_ldon_points", &lua_add_ldon_points),
|
||||
luabind::def("add_ldon_win", &lua_add_ldon_win),
|
||||
luabind::def("remove_ldon_loss", &lua_remove_ldon_loss),
|
||||
luabind::def("remove_ldon_win", &lua_remove_ldon_win),
|
||||
luabind::def("get_gender_name", &lua_get_gender_name),
|
||||
luabind::def("get_deity_name", &lua_get_deity_name),
|
||||
luabind::def("get_inventory_slot_name", &lua_get_inventory_slot_name),
|
||||
@ -4523,6 +4525,12 @@ luabind::scope lua_register_general() {
|
||||
luabind::def("world_wide_move_instance", (void(*)(uint16))&lua_world_wide_move_instance),
|
||||
luabind::def("world_wide_move_instance", (void(*)(uint16,uint8))&lua_world_wide_move_instance),
|
||||
luabind::def("world_wide_move_instance", (void(*)(uint16,uint8,uint8))&lua_world_wide_move_instance),
|
||||
luabind::def("world_wide_remove_ldon_loss", (void(*)(uint32))&lua_world_wide_remove_ldon_loss),
|
||||
luabind::def("world_wide_remove_ldon_loss", (void(*)(uint32,uint8))&lua_world_wide_remove_ldon_loss),
|
||||
luabind::def("world_wide_remove_ldon_loss", (void(*)(uint32,uint8,uint8))&lua_world_wide_remove_ldon_loss),
|
||||
luabind::def("world_wide_remove_ldon_win", (void(*)(uint32))&lua_world_wide_remove_ldon_win),
|
||||
luabind::def("world_wide_remove_ldon_win", (void(*)(uint32,uint8))&lua_world_wide_remove_ldon_win),
|
||||
luabind::def("world_wide_remove_ldon_win", (void(*)(uint32,uint8,uint8))&lua_world_wide_remove_ldon_win),
|
||||
luabind::def("world_wide_remove_spell", (void(*)(uint32))&lua_world_wide_remove_spell),
|
||||
luabind::def("world_wide_remove_spell", (void(*)(uint32,uint8))&lua_world_wide_remove_spell),
|
||||
luabind::def("world_wide_remove_spell", (void(*)(uint32,uint8,uint8))&lua_world_wide_remove_spell),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user