summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/transform.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-05-27 11:27:43 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-05-27 11:47:28 -0400
commit7bd0902ce6cc84c6dee5d037b5a874c489a35e7c (patch)
tree8e9c90d1b1f7f7bb3580ac38bccb1e9ae5d2aa6d /crawl-ref/source/transform.cc
parentf4393d7ca9963d70a955fe45f6c23fa60682ecce (diff)
downloadcrawl-ref-7bd0902ce6cc84c6dee5d037b5a874c489a35e7c.tar.gz
crawl-ref-7bd0902ce6cc84c6dee5d037b5a874c489a35e7c.zip
Remove SIZE_HUGE.
Do you know whether it was bigger than SIZE_GIANT or not? Chances are no (it's bigger, to be clear). There are some small changes to in constriction, though there aren't any constrictors at either size, and knockback -- in particular, dragons will be less effective at knocking back giants. The other change is that Dragon Form will have slightly better EV, as will monster dragons (but only while constricted or netted). The change seems like it is rather minor; I tested it with 15 Dodging and only had a difference of 3 EV.
Diffstat (limited to 'crawl-ref/source/transform.cc')
-rw-r--r--crawl-ref/source/transform.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/transform.cc b/crawl-ref/source/transform.cc
index 1c57fedc6f..35cdbec14e 100644
--- a/crawl-ref/source/transform.cc
+++ b/crawl-ref/source/transform.cc
@@ -447,7 +447,7 @@ size_type player::transform_size(transformation_type tform, int psize) const
case TRAN_ICE_BEAST:
return SIZE_LARGE;
case TRAN_DRAGON:
- return SIZE_HUGE;
+ return SIZE_GIANT;
default:
return SIZE_CHARACTER;
}