summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/player.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 462a38abae..c929776c85 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -1121,8 +1121,8 @@ int player_res_poison(bool calc_unid)
break;
}
- if (rp > 3)
- rp = 3;
+ if (rp > 1)
+ rp = 1;
return (rp);
} // end player_res_poison()
@@ -2045,6 +2045,9 @@ int player_see_invis(bool calc_unid)
if (artefacts > 0)
si += artefacts;
+ if ( si > 1 )
+ si = 1;
+
return si;
}