summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cloud.cc
diff options
context:
space:
mode:
authorStefan O'Rear <stefanor@cox.net>2009-11-09 16:38:19 -0800
committerStefan O'Rear <stefanor@cox.net>2009-11-09 16:38:19 -0800
commitef37e50015100bbf90abd8371149b42e832d5a39 (patch)
tree9e004aa1ce02869cf63a24f580d6c15130444261 /crawl-ref/source/cloud.cc
parent138af0108169cca489f28b413d9db7ddc8265612 (diff)
downloadcrawl-ref-ef37e50015100bbf90abd8371149b42e832d5a39.tar.gz
crawl-ref-ef37e50015100bbf90abd8371149b42e832d5a39.zip
Fix broken steam cloud damage (Kyrris)
Diffstat (limited to 'crawl-ref/source/cloud.cc')
-rw-r--r--crawl-ref/source/cloud.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/cloud.cc b/crawl-ref/source/cloud.cc
index 84afecf6e0..d9e5b13350 100644
--- a/crawl-ref/source/cloud.cc
+++ b/crawl-ref/source/cloud.cc
@@ -736,8 +736,7 @@ void in_a_cloud()
if (hurted < 0)
hurted = 0;
- ouch((hurted * you.time_taken) / 10, cl, KILLED_BY_CLOUD,
- "steam");
+ ouch(hurted, cl, KILLED_BY_CLOUD, "steam");
break;
}