summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/q_invas.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/q_invas.c b/src/q_invas.c
index 59c71d62..985062af 100644
--- a/src/q_invas.c
+++ b/src/q_invas.c
@@ -84,8 +84,6 @@ bool_ quest_invasion_ai_hook(char *fmt)
}
bool_ quest_invasion_turn_hook(char *fmt)
{
- bool_ old_quick_messages = quick_messages;
-
if (cquest.status != QUEST_STATUS_UNTAKEN) return (FALSE);
if (p_ptr->lev < 45) return (FALSE);
@@ -96,7 +94,6 @@ bool_ quest_invasion_turn_hook(char *fmt)
if (p_ptr->astral) return ( FALSE);
/* Ok give the quest */
- quick_messages = FALSE;
cmsg_print(TERM_YELLOW, "A Thunderlord appears in front of you and says:");
cmsg_print(TERM_YELLOW, "'Hello, noble hero. I am Liron, rider of Tolan. Turgon, King of Gondolin sent me.'");
cmsg_print(TERM_YELLOW, "'Gondolin is being invaded; he needs your help now or everything will be lost.'");
@@ -104,8 +101,6 @@ bool_ quest_invasion_turn_hook(char *fmt)
cquest.status = QUEST_STATUS_TAKEN;
- quick_messages = old_quick_messages;
-
quest_invasion_init_hook(QUEST_INVASION);
del_hook(HOOK_END_TURN, quest_invasion_turn_hook);
process_hooks_restart = TRUE;