summaryrefslogtreecommitdiff
path: root/src/map/magic.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/magic.c')
-rw-r--r--src/map/magic.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/map/magic.c b/src/map/magic.c
index bc25b07..5225ede 100644
--- a/src/map/magic.c
+++ b/src/map/magic.c
@@ -78,7 +78,13 @@ magic_message(character_t *caster,
if (spell) {
int near_miss;
env_t *env = spell_create_env(&magic_conf, spell, caster, power, parameter);
- effect_set_t *effects = (power < 1) ? NULL : spell_trigger(spell, caster, env, &near_miss);
+ effect_set_t *effects;
+
+ if ((spell->flags & SPELL_FLAG_NONMAGIC)
+ || (power >= 1))
+ effects = spell_trigger(spell, caster, env, &near_miss);
+ else
+ effects = NULL;
#ifdef DEBUG
fprintf(stderr, "Found spell `%s', triggered = %d\n", spell_, effects != NULL);