[Quest API] Add missing Luabind definitions to lua_general.cpp (#3167)

# Notes
- These definitions were missing somehow.
This commit is contained in:
Alex King 2023-03-31 21:05:01 -04:00 committed by GitHub
parent 25f5898bae
commit e1eb1ff738
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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),