summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-06 16:55:37 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-06 16:55:37 +0000
commit9d66ff60135a8567eee4bff72a7a713a11c18b4d (patch)
treea8aa04533d1e51979efcdeb1060b037c34e6c230 /crawl-ref/source/enum.h
parent78e4b50a9ca14a10410bca6661433138892346cb (diff)
downloadcrawl-ref-9d66ff60135a8567eee4bff72a7a713a11c18b4d.tar.gz
crawl-ref-9d66ff60135a8567eee4bff72a7a713a11c18b4d.zip
Fix size-related comments to match nagass and centaurs' actual body
sizes. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8932 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 2bffbdb455..d7ef76457c 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -2507,14 +2507,14 @@ enum shop_type // (unsigned char) env.sh_type[], item_in_shop(), in_a_shop()
// These are often addressed relative to each other (esp. delta SIZE_MEDIUM).
enum size_type
{
- SIZE_TINY, // rat/bat
- SIZE_LITTLE, // spriggan
- SIZE_SMALL, // halfling/kobold/gnome
- SIZE_MEDIUM, // human/elf/dwarf
- SIZE_LARGE, // troll/ogre/centaur/naga
- SIZE_BIG, // large quadrupeds
- SIZE_GIANT, // giant
- SIZE_HUGE, // dragon
+ SIZE_TINY, // rats/bats
+ SIZE_LITTLE, // spriggans
+ SIZE_SMALL, // halflings/kobolds/gnomes
+ SIZE_MEDIUM, // humans/elves/dwarves
+ SIZE_LARGE, // trolls/ogres
+ SIZE_BIG, // large quadrupeds/centaurs/nagas
+ SIZE_GIANT, // giants
+ SIZE_HUGE, // dragons
NUM_SIZE_LEVELS,
SIZE_CHARACTER // transformations that don't change size
};