MCPcopy Create free account
hub / github.com/DFHack/dfhack / dfhack_event_tostring

Function dfhack_event_tostring

library/LuaTools.cpp:1561–1567  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1559}
1560
1561static 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
1569static int dfhack_event_index(lua_State *L)
1570{

Callers

nothing calls this directly

Calls 3

luaL_checktypeFunction · 0.85
lua_touserdataFunction · 0.85
lua_pushfstringFunction · 0.85

Tested by

no test coverage detected