summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-26 14:07:07 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-26 14:07:07 +0000
commit4784d40f57682c0d960f382d5b975e13cf0326a4 (patch)
tree404667b78ec34739bb5e27d5895f5eebe8d313f4 /crawl-ref/source/player.cc
parent1b83dce6a779ad79baccd3ce407de402714dc69d (diff)
downloadcrawl-ref-4784d40f57682c0d960f382d5b975e13cf0326a4.tar.gz
crawl-ref-4784d40f57682c0d960f382d5b975e13cf0326a4.zip
Fixed inappropriate monsters being able to submerge in air, tweaked monster shield numbers.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3343 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 02e6358443..0b69753383 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -5926,7 +5926,7 @@ int player::shield_bonus() const
int player::shield_bypass_ability(int tohit) const
{
- return (10 + tohit * 2);
+ return (15 + tohit / 2);
}
void player::shield_block_succeeded()