From 0c4a63b2f485fd6203325c0cc61ca8fdcddc288d Mon Sep 17 00:00:00 2001 From: haranp Date: Fri, 19 Oct 2007 16:30:10 +0000 Subject: 1815768: some NOTE_USER_NOTEs should be NOTE_MESSAGE instead (actually they should be yet another note type, but NOTE_MESSAGE works for now.) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2490 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/effects.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/effects.cc') diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc index a4db2907b5..8cf3b45865 100644 --- a/crawl-ref/source/effects.cc +++ b/crawl-ref/source/effects.cc @@ -270,7 +270,7 @@ void banished(dungeon_feature_type gate_type, const std::string &who) if (cast_into != "" && you.entry_cause != EC_SELF_EXPLICIT) { const std::string what = "Cast into " + cast_into + who_banished(who); - take_note(Note(NOTE_USER_NOTE, 0, 0, what.c_str()), true); + take_note(Note(NOTE_MESSAGE, 0, 0, what.c_str()), true); } down_stairs(you.your_level, gate_type, you.entry_cause); // heh heh -- cgit v1.2.3-54-g00ecf