summaryrefslogtreecommitdiff
path: root/src/cmd2.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-10-08 11:38:29 +0200
committerBardur Arantsson <bardur@scientician.net>2016-10-08 11:38:29 +0200
commit71a820e7298a670c13bd68cb3e6f2274a4dc3ba9 (patch)
treec34ed289c07a9187b6d5f6600533fce7f6b872e1 /src/cmd2.cc
parente2f33131dfed23435a7915daa57b1ddf05c5f898 (diff)
Remove unused parameter from disturb()
Diffstat (limited to 'src/cmd2.cc')
-rw-r--r--src/cmd2.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/cmd2.cc b/src/cmd2.cc
index dce9273d..11e70583 100644
--- a/src/cmd2.cc
+++ b/src/cmd2.cc
@@ -1117,7 +1117,7 @@ void do_cmd_open(void)
}
/* Cancel repeat unless we may continue */
- if (!more) disturb(0);
+ if (!more) disturb();
}
@@ -1265,7 +1265,7 @@ void do_cmd_close(void)
}
/* Cancel repeat unless we may continue */
- if (!more) disturb(0);
+ if (!more) disturb();
}
@@ -1694,7 +1694,7 @@ void do_cmd_tunnel(void)
}
/* Cancel repetition unless we can continue */
- if (!more) disturb(0);
+ if (!more) disturb();
}
/*
@@ -1897,7 +1897,7 @@ void do_cmd_bash(void)
}
/* Unless valid action taken, cancel bash */
- if (!more) disturb(0);
+ if (!more) disturb();
}
@@ -1980,7 +1980,7 @@ void do_cmd_alter(void)
}
/* Cancel repetition unless we can continue */
- if (!more) disturb(0);
+ if (!more) disturb();
}
@@ -2150,7 +2150,7 @@ static void do_cmd_walk_jump(int pickup)
}
/* Cancel repeat unless we may continue */
- if (!more) disturb(0);
+ if (!more) disturb();
}
@@ -2322,7 +2322,7 @@ static void do_cmd_unwalk()
}
/* Cancel repetition unless we can continue */
- if (!more) disturb(0);
+ if (!more) disturb();
}
@@ -2420,7 +2420,7 @@ void do_cmd_stay(int pickup)
if (c_ptr->feat == FEAT_SHOP)
{
/* Disturb */
- disturb(0);
+ disturb();
/* Hack -- enter store */
command_new = '_';