summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-19 16:16:46 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-19 16:16:46 +0000
commit6fb3fad32735b161cd4a37dde5b66ddcabe1a294 (patch)
tree3a7cfb6fb173055332d744b9532874dd6e291ada /crawl-ref/source/beam.cc
parent7737a83cf752ab895c89d0a6032881f32344dc6c (diff)
downloadcrawl-ref-6fb3fad32735b161cd4a37dde5b66ddcabe1a294.tar.gz
crawl-ref-6fb3fad32735b161cd4a37dde5b66ddcabe1a294.zip
Comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5126 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index 9d04a2e73b..6e0b8d4838 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -1805,8 +1805,8 @@ int mons_adjust_flavoured( monsters *monster, bolt &pbolt,
break;
case BEAM_ICE:
- /* ice - about 50% of damage is cold, other 50% is impact and
- can't be resisted (except by AC, of course) */
+ // ice - about 50% of damage is cold, other 50% is impact and
+ // can't be resisted (except by AC, of course)
hurted = resist_adjust_damage(monster, pbolt.flavour,
monster->res_cold(), hurted,
true);
@@ -1847,7 +1847,7 @@ int mons_adjust_flavoured( monsters *monster, bolt &pbolt,
break;
default:
break;
- } /* end of switch */
+ } // end of switch
if (pbolt.name == "hellfire")
{
@@ -1879,7 +1879,7 @@ int mons_adjust_flavoured( monsters *monster, bolt &pbolt,
simple_monster_message(monster, " is burned terribly!");
}
- hurted *= 12; /* hellfire */
+ hurted *= 12; // hellfire
hurted /= 10;
}
}