summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-30 10:32:43 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-30 10:32:43 +0000
commit58e4e5380bfe6044d9ce0361d1e778a8a41564f4 (patch)
tree99ae256a3d653a879a32197a9198fbdf0b7ff5dc
parent95538f0716c292c5383121652ede88acd633e9c1 (diff)
downloadcrawl-ref-58e4e5380bfe6044d9ce0361d1e778a8a41564f4.tar.gz
crawl-ref-58e4e5380bfe6044d9ce0361d1e778a8a41564f4.zip
Fixed Corona for 0.2. All hail Erik.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.2@1131 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/spells4.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index d159b42367..fb8a0bace2 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -1881,7 +1881,7 @@ bool backlight_monsters(int x, int y, int pow, int garbage)
// this enchantment wipes out invisibility (neat)
menv[mon].del_ench(ENCH_INVIS);
- menv[mon].add_ench(ENCH_BACKLIGHT);
+ menv[mon].add_ench(mon_enchant(ENCH_BACKLIGHT, 1));
return (true);
} // end backlight_monsters()