summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-10 16:10:44 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-10 16:10:44 +0000
commit5cc23b45f0c5afe8f8f73e7b5e14695cb168c021 (patch)
treee9fb922c107d00c7eaf5c619a28dee3c220afcd6 /crawl-ref
parent512696e788bbd4172853b8a1d7cca95497c98a6a (diff)
downloadcrawl-ref-5cc23b45f0c5afe8f8f73e7b5e14695cb168c021.tar.gz
crawl-ref-5cc23b45f0c5afe8f8f73e7b5e14695cb168c021.zip
Don't say the player stopped glowing if he didn't.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1283 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/acr.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index c9f08f5875..30e59633e8 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -2017,7 +2017,7 @@ static void decrement_durations()
Options.tutorial_events[TUT_YOU_ENCHANTED] = tut_slow;
}
- if (you.backlight > 0 && !--you.backlight)
+ if (you.backlight > 0 && !--you.backlight && !you.backlit())
mpr("You are no longer glowing.", MSGCH_DURATION);
if (you.confusing_touch > 1)