This commit is contained in:
MihailRis 2024-03-05 23:35:09 +03:00
parent bcd3770739
commit b947a089d3

View File

@ -191,7 +191,7 @@ bool scripting::on_item_use(Player* player, const ItemDef* item) {
std::string name = item->name+".use"; std::string name = item->name+".use";
if (state->getglobal(name)) { if (state->getglobal(name)) {
state->pushinteger(player->getId()); state->pushinteger(player->getId());
if (state->callNoThrow(4)) { if (state->callNoThrow(1)) {
return state->toboolean(-1); return state->toboolean(-1);
} }
} }