Skip to content

Commit

Permalink
feat(balance): don't give mi-gos spawned by nerve clusters free turns
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosvolt committed Jun 4, 2024
1 parent e03918c commit 9ce0fd3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/map_functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ void migo_nerve_cage_removal( map &m, const tripoint &p, bool spawn_damaged )
if( spawn_damaged ) {
spawn->set_hp( spawn->get_hp_max() / 2 );
}
// Don't give the mi-go free shots against the player
spawn->mod_moves( -300 );
if( get_player_character().sees( p ) ) {
add_msg( m_bad, _( "Something stirs and clambers out of the ruined mass of flesh and nerves!" ) );
}
Expand Down

0 comments on commit 9ce0fd3

Please sign in to comment.