summaryrefslogtreecommitdiff
path: root/src/q_thrain.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-06-26 09:14:06 +0200
committerBardur Arantsson <bardur@scientician.net>2012-06-26 09:17:57 +0200
commit30ba18d4fd9901f7d7fdbde83b41de5e0ef7e8c1 (patch)
tree8087c872864a2344deb1c1f44df673693db88bdc /src/q_thrain.c
parentae6bee5100bb9ec4e7a3d5fa8538ca3eae38dc58 (diff)
messages: Remove message__type; it's not really used.
Diffstat (limited to 'src/q_thrain.c')
-rw-r--r--src/q_thrain.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/q_thrain.c b/src/q_thrain.c
index b2b1be9f..6180706c 100644
--- a/src/q_thrain.c
+++ b/src/q_thrain.c
@@ -212,7 +212,10 @@ bool_ quest_thrain_init_hook(int q)
if (!cquest.data[0])
{
cquest.data[0] = rand_range(d_info[DUNGEON_DOL_GULDUR].mindepth + 1, d_info[DUNGEON_DOL_GULDUR].maxdepth - 1);
- if (wizard) message_add(MESSAGE_MSG, format("Thrain lvl %d", cquest.data[0]), TERM_BLUE);
+ if (wizard)
+ {
+ message_add(format("Thrain lvl %d", cquest.data[0]), TERM_BLUE);
+ }
}
if ((cquest.status >= QUEST_STATUS_TAKEN) && (cquest.status < QUEST_STATUS_FINISHED))
{