summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-place.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-06-07 05:13:08 -0400
committerNeil Moore <neil@s-z.org>2014-06-07 05:14:47 -0400
commita052c3cf1c0bc30bcaddbdfb29ad9bcb9aabf410 (patch)
tree3607df922612040b02f24aa7fe81c0a3bb5eb3d5 /crawl-ref/source/mon-place.cc
parent1ff08e9d48cab3cbd7842da0376ccb18c3a36687 (diff)
downloadcrawl-ref-a052c3cf1c0bc30bcaddbdfb29ad9bcb9aabf410.tar.gz
crawl-ref-a052c3cf1c0bc30bcaddbdfb29ad9bcb9aabf410.zip
Don't claim that monster open portal gates (#8655)
SC_ARCH was added in 0.14-a0-2782-gadab473, but the places that should have used it used SC_GATE instead. And of course a gate is not the same as a gate.
Diffstat (limited to 'crawl-ref/source/mon-place.cc')
-rw-r--r--crawl-ref/source/mon-place.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-place.cc b/crawl-ref/source/mon-place.cc
index e9971c0618..fb4c1b2896 100644
--- a/crawl-ref/source/mon-place.cc
+++ b/crawl-ref/source/mon-place.cc
@@ -1087,7 +1087,7 @@ monster* place_monster(mgen_data mg, bool force_pos, bool dont_place)
{
case DCHAR_STAIRS_DOWN: mon->seen_context = SC_UPSTAIRS; break;
case DCHAR_STAIRS_UP: mon->seen_context = SC_DOWNSTAIRS; break;
- case DCHAR_ARCH: mon->seen_context = SC_GATE; break;
+ case DCHAR_ARCH: mon->seen_context = SC_ARCH; break;
default: ;
}
}