Prevent hp-full or pw-full interrupt when running
The "You are in full health" and "You feel full of energy" should only happen when repeating a command, not when running.
This commit is contained in:
+1
-1
@@ -730,7 +730,7 @@ STATIC_DCL void
|
|||||||
interrupt_multi(msg)
|
interrupt_multi(msg)
|
||||||
const char *msg;
|
const char *msg;
|
||||||
{
|
{
|
||||||
if (multi > 0 && !context.travel) {
|
if (multi > 0 && !context.travel && !context.run) {
|
||||||
nomul(0);
|
nomul(0);
|
||||||
if (flags.verbose && msg)
|
if (flags.verbose && msg)
|
||||||
Norep("%s", msg);
|
Norep("%s", msg);
|
||||||
|
|||||||
Reference in New Issue
Block a user