Skip to content

Commit

Permalink
Necromancer's command: deduct mana and take a turn if resisted
Browse files Browse the repository at this point in the history
  • Loading branch information
backwardsEric authored and NickMcConnell committed Oct 1, 2024
1 parent 56f1a6c commit 774e24e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/effect-handler-general.c
Original file line number Diff line number Diff line change
Expand Up @@ -3648,7 +3648,8 @@ bool effect_handler_COMMAND(effect_handler_context_t *context)
char m_name[80];
monster_desc(m_name, sizeof(m_name), mon, MDESC_STANDARD);
msg("%s resists your command!", m_name);
return false;
/* Take a turn and deduct mana when the monster resists. */
return true;
}

/* Player is commanding */
Expand Down

0 comments on commit 774e24e

Please sign in to comment.