| 32 | static const char *VAULT_PLACEMENT_METATABLE = "crawl.vault-placement"; |
| 33 | |
| 34 | static inline bool _lua_boolean(lua_State *ls, int ndx, bool defval) |
| 35 | { |
| 36 | return lua_isnone(ls, ndx)? defval : lua_toboolean(ls, ndx); |
| 37 | } |
| 38 | |
| 39 | void dgn_reset_default_depth() |
| 40 | { |
no outgoing calls
no test coverage detected