From 995e35a5faf111223e24caeecc97c47cfe050e5a Mon Sep 17 00:00:00 2001 From: dolorous Date: Tue, 30 Jun 2009 15:53:00 +0000 Subject: Fix [2813620]: The sizes of player nagas and centaurs don't match the sizes of their monster equivalents. The latter are SIZE_BIG, while the former are, at most, SIZE_LARGE; and SIZE_BIG, in addition to being one value higher than SIZE_LARGE, allows use of two-handed weapons as though they're one-and-a-half-handed weapons under the current logic in hands_reqd(). For now, fix this by making monster nagas and centaurs (and all other monsters capable of using weapons and armour) no bigger than SIZE_LARGE. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10081 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/enum.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/enum.h') diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h index 9905fb912f..8b696fc5cc 100644 --- a/crawl-ref/source/enum.h +++ b/crawl-ref/source/enum.h @@ -2513,8 +2513,8 @@ enum size_type SIZE_LITTLE, // spriggans SIZE_SMALL, // halflings/kobolds SIZE_MEDIUM, // humans/elves/dwarves - SIZE_LARGE, // trolls/ogres - SIZE_BIG, // large quadrupeds/centaurs/nagas + SIZE_LARGE, // trolls/ogres/centaurs/nagas + SIZE_BIG, // large quadrupeds SIZE_GIANT, // giants SIZE_HUGE, // dragons NUM_SIZE_LEVELS, -- cgit v1.2.3-54-g00ecf