summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index e4d05849c6..79d792e072 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1275,7 +1275,7 @@ spret_type your_spells( spell_type spell, int powc, bool allow_fail )
case SPELL_DETECT_TRAPS:
mprf("You detect %s",
- (detect_traps(powc) > 0) ? "some traps!" : "nothing.");
+ (detect_traps(powc) > 0) ? "traps!" : "nothing.");
break;
case SPELL_BLINK:
@@ -1347,7 +1347,8 @@ spret_type your_spells( spell_type spell, int powc, bool allow_fail )
break;
case SPELL_DETECT_ITEMS:
- detect_items(powc);
+ mprf("You detect %s",
+ (detect_items(powc) > 0) ? "items!" : "nothing.");
break;
case SPELL_BORGNJORS_REVIVIFICATION:
@@ -1569,7 +1570,8 @@ spret_type your_spells( spell_type spell, int powc, bool allow_fail )
break;
case SPELL_DETECT_CREATURES:
- detect_creatures(powc);
+ mprf("You detect %s",
+ (detect_creatures(powc) > 0) ? "creatures!" : "nothing.");
break;
case SPELL_CURE_POISON_II: // poison magic version of cure poison