mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix the documentation of InvRef:get_lists() and clean up code (#12150)
This commit is contained in:
parent
0f25fa7af6
commit
8d387433b1
10 changed files with 56 additions and 96 deletions
|
@ -281,15 +281,7 @@ bool ScriptApiClient::on_inventory_open(Inventory *inventory)
|
|||
lua_getglobal(L, "core");
|
||||
lua_getfield(L, -1, "registered_on_inventory_open");
|
||||
|
||||
std::vector<const InventoryList*> lists = inventory->getLists();
|
||||
std::vector<const InventoryList*>::iterator iter = lists.begin();
|
||||
lua_createtable(L, 0, lists.size());
|
||||
for (; iter != lists.end(); iter++) {
|
||||
const char* name = (*iter)->getName().c_str();
|
||||
lua_pushstring(L, name);
|
||||
push_inventory_list(L, inventory, name);
|
||||
lua_rawset(L, -3);
|
||||
}
|
||||
push_inventory_lists(L, *inventory);
|
||||
|
||||
try {
|
||||
runCallbacks(1, RUN_CALLBACKS_MODE_OR);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue