| 1351 | } |
| 1352 | |
| 1353 | static int crawl_tutorial_msg(lua_State *ls) |
| 1354 | { |
| 1355 | const char *key = luaL_checkstring(ls, 1); |
| 1356 | if (!key) |
| 1357 | return 0; |
| 1358 | tutorial_msg(key, lua_isboolean(ls, 2) && lua_toboolean(ls, 2)); |
| 1359 | return 0; |
| 1360 | } |
| 1361 | |
| 1362 | /*** Produce a character dump |
| 1363 | * @function dump_char |
nothing calls this directly
no test coverage detected