| 3128 | } |
| 3129 | |
| 3130 | staticfn int |
| 3131 | get_table_monclass(lua_State *L) |
| 3132 | { |
| 3133 | char *s = get_table_str_opt(L, "class", NULL); |
| 3134 | int ret = -1; |
| 3135 | |
| 3136 | if (s && strlen(s) == 1) |
| 3137 | ret = (int) *s; |
| 3138 | Free(s); |
| 3139 | return ret; |
| 3140 | } |
| 3141 | |
| 3142 | staticfn int |
| 3143 | find_montype( |
no test coverage detected