summaryrefslogtreecommitdiff
path: root/src/cmd7.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:14 +0200
committerBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:14 +0200
commit6006546b4d015619b7d119d400fac819da6bc826 (patch)
tree2a1704a5c22cf2485917185316af0a5417a3de55 /src/cmd7.cc
parent6adef091b0713941e1149ecf21a5ab6feee3b06d (diff)
Factor out 'flush_failure' option handling
Diffstat (limited to 'src/cmd7.cc')
-rw-r--r--src/cmd7.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/cmd7.cc b/src/cmd7.cc
index 6aac9050..aaec34b7 100644
--- a/src/cmd7.cc
+++ b/src/cmd7.cc
@@ -420,7 +420,7 @@ void do_cmd_mindcraft(void)
/* Failed spell */
if (rand_int(100) < chance)
{
- if (flush_failure) flush();
+ flush_on_failure();
msg_format("You failed to concentrate hard enough!");
@@ -945,7 +945,7 @@ void do_cmd_mimic(void)
/* Failed spell */
if (rand_int(100) < fail)
{
- if (flush_failure) flush();
+ flush_on_failure();
msg_format("You failed to concentrate hard enough!");
@@ -1576,7 +1576,7 @@ void do_cmd_powermage(void)
char sfail[80];
/* Flush input if told so */
- if (flush_failure) flush();
+ flush_on_failure();
/* Insane players can see something strange */
if (rand_int(100) < insanity)
@@ -1754,7 +1754,7 @@ void brand_ammo(int brand_type, int bolts_only)
}
else
{
- if (flush_failure) flush();
+ flush_on_failure();
msg_print("The enchantment failed.");
}
}
@@ -2199,7 +2199,7 @@ void do_cmd_necromancer(void)
/* Failed spell */
if (rand_int(100) < chance)
{
- if (flush_failure) flush();
+ flush_on_failure();
msg_format("You failed to concentrate hard enough!");
if (randint(100) < (chance / 2))
@@ -2581,7 +2581,7 @@ int rune_exec(rune_spell *spell, int cost)
char sfail[80];
/* Flush input if told so */
- if (flush_failure) flush();
+ flush_on_failure();
/* Insane players can see something strange */
if (rand_int(100) < insanity)
@@ -4060,7 +4060,7 @@ void do_cmd_symbiotic(void)
/* Failed spell */
if (rand_int(100) < chance)
{
- if (flush_failure) flush();
+ flush_on_failure();
msg_format("You failed to concentrate hard enough!");
}
else