| 1559 | } |
| 1560 | |
| 1561 | static int dfhack_event_tostring(lua_State *L) |
| 1562 | { |
| 1563 | luaL_checktype(L, 1, LUA_TUSERDATA); |
| 1564 | auto obj = (EventObject *)lua_touserdata(L, 1); |
| 1565 | lua_pushfstring(L, "<event: %d listeners>", obj->item_count); |
| 1566 | return 1; |
| 1567 | } |
| 1568 | |
| 1569 | static int dfhack_event_index(lua_State *L) |
| 1570 | { |
nothing calls this directly
no test coverage detected