summaryrefslogtreecommitdiff
path: root/src/cmd2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd2.c')
-rw-r--r--src/cmd2.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/cmd2.c b/src/cmd2.c
index 28a3dc1e..67f25098 100644
--- a/src/cmd2.c
+++ b/src/cmd2.c
@@ -1225,7 +1225,7 @@ void do_cmd_open(void)
process_hooks(HOOK_OPEN, "(d)", is_quest(dun_level));
/* Cancel repeat unless we may continue */
- if (!more) disturb(0, 0);
+ if (!more) disturb(0);
}
@@ -1378,7 +1378,7 @@ void do_cmd_close(void)
}
/* Cancel repeat unless we may continue */
- if (!more) disturb(0, 0);
+ if (!more) disturb(0);
}
@@ -1822,7 +1822,7 @@ void do_cmd_tunnel(void)
}
/* Cancel repetition unless we can continue */
- if (!more) disturb(0, 0);
+ if (!more) disturb(0);
}
@@ -2235,7 +2235,7 @@ void do_cmd_disarm(void)
}
/* Cancel repeat unless told not to */
- if (!more) disturb(0, 0);
+ if (!more) disturb(0);
}
@@ -2444,7 +2444,7 @@ void do_cmd_bash(void)
}
/* Unless valid action taken, cancel bash */
- if (!more) disturb(0, 0);
+ if (!more) disturb(0);
}
@@ -2532,7 +2532,7 @@ void do_cmd_alter(void)
}
/* Cancel repetition unless we can continue */
- if (!more) disturb(0, 0);
+ if (!more) disturb(0);
}
@@ -2699,7 +2699,7 @@ static void do_cmd_walk_jump(int pickup, bool_ disarm)
}
/* Cancel repeat unless we may continue */
- if (!more) disturb(0, 0);
+ if (!more) disturb(0);
}
@@ -2811,7 +2811,7 @@ void do_cmd_stay(int pickup)
if (c_ptr->feat == FEAT_SHOP)
{
/* Disturb */
- disturb(0, 0);
+ disturb(0);
/* Hack -- enter store */
command_new = '_';
@@ -4364,7 +4364,7 @@ void do_cmd_unwalk()
}
/* Cancel repetition unless we can continue */
- if (!more) disturb(0, 0);
+ if (!more) disturb(0);
}