| 543 | } |
| 544 | |
| 545 | static int dfhack_matinfo_toString(lua_State *state) |
| 546 | { |
| 547 | MaterialInfo info; |
| 548 | decode_matinfo(state, &info); |
| 549 | |
| 550 | lua_settop(state, 3); |
| 551 | auto str = info.toString(luaL_optint(state, 2, 10015), lua_toboolean(state, 3)); |
| 552 | lua_pushstring(state, str.c_str()); |
| 553 | return 1; |
| 554 | } |
| 555 | |
| 556 | static int dfhack_matinfo_getCraftClass(lua_State *state) |
| 557 | { |
nothing calls this directly
no test coverage detected