Skip to content

Commit

Permalink
Merge pull request #65251 from anoobindisguise/anoobindisguise-rez-hallu
Browse files Browse the repository at this point in the history
Fix issues with low tier artifact resonance
  • Loading branch information
Rivet-the-Zombie authored Apr 23, 2023
2 parents 2b55182 + e9fe517 commit 531e7be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/suffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1781,11 +1781,11 @@ void suffer::from_artifact_resonance( Character &you, int amt )
you.mod_pain( 5 );
} else if( rng_outcome == 2 ) {
you.add_msg_if_player( m_bad,
_( "Your vision suddenly becomes blurry and hard to decipher." ) );
you.add_effect( effect_hallu, 5_minutes );
_( "Your vision becomes blurry and you suddenly feel like you're falling." ) );
you.add_effect( effect_visuals, 5_minutes );
} else if( rng_outcome == 3 ) {
you.add_msg_if_player( m_bad, _( "You suddenly feel very queasy." ) );
you.add_effect( effect_nausea, 1_minutes );
you.add_effect( effect_nausea, 5_minutes );
}
}
}
Expand Down

0 comments on commit 531e7be

Please sign in to comment.