summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index e7fa203a2b..81f36eb76b 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -1679,13 +1679,12 @@ static void _zappy( zap_type z_type, int power, bolt &pbolt )
break;
}
- if ( wearing_amulet(AMU_INACCURACY) )
+ if (wearing_amulet(AMU_INACCURACY))
{
pbolt.hit -= 5;
- if ( pbolt.hit < 0 )
- pbolt.hit = 0;
+ pbolt.hit = std::max(0, pbolt.hit);
}
-} // end zappy()
+}
/* NEW (GDL):
* Now handles all beamed/thrown items and spells, tracers, and their effects.