* Casting-specific checks that are involved when casting any spell. Includes * MP (which does use the spell level if provided), confusion state, banned * schools. * * @param spell The spell in question. * @param temp Include checks for volatile or temporary states * (status effects, mana) * @return Whether casting is useless */
| 1175 | * @return Whether casting is useless |
| 1176 | */ |
| 1177 | bool casting_is_useless(spell_type spell, bool temp) |
| 1178 | { |
| 1179 | return !casting_uselessness_reason(spell, temp).empty(); |
| 1180 | } |
| 1181 | |
| 1182 | /** |
| 1183 | * Casting-specific checks that are involved when casting any spell or larger |
no test coverage detected