| 1551 | } |
| 1552 | |
| 1553 | static int dfhack_event_len(lua_State *L) |
| 1554 | { |
| 1555 | luaL_checktype(L, 1, LUA_TUSERDATA); |
| 1556 | auto obj = (EventObject *)lua_touserdata(L, 1); |
| 1557 | lua_pushinteger(L, obj->item_count); |
| 1558 | return 1; |
| 1559 | } |
| 1560 | |
| 1561 | static int dfhack_event_tostring(lua_State *L) |
| 1562 | { |
nothing calls this directly
no test coverage detected