| 534 | } |
| 535 | |
| 536 | static int dfhack_matinfo_getToken(lua_State *state) |
| 537 | { |
| 538 | MaterialInfo info; |
| 539 | decode_matinfo(state, &info, true); |
| 540 | auto str = info.getToken(); |
| 541 | lua_pushstring(state, str.c_str()); |
| 542 | return 1; |
| 543 | } |
| 544 | |
| 545 | static int dfhack_matinfo_toString(lua_State *state) |
| 546 | { |
nothing calls this directly
no test coverage detected