|
From: <dsh...@us...> - 2007-04-01 21:00:30
|
Revision: 1178
http://svn.sourceforge.net/crawl-ref/?rev=1178&view=rev
Author: dshaligram
Date: 2007-04-01 14:00:28 -0700 (Sun, 01 Apr 2007)
Log Message:
-----------
Fixed overly severe EV penalties for nagas and centaurs.
Modified Paths:
--------------
trunk/crawl-ref/source/enum.h
trunk/crawl-ref/source/player.cc
Modified: trunk/crawl-ref/source/enum.h
===================================================================
--- trunk/crawl-ref/source/enum.h 2007-04-01 20:50:54 UTC (rev 1177)
+++ trunk/crawl-ref/source/enum.h 2007-04-01 21:00:28 UTC (rev 1178)
@@ -3004,8 +3004,8 @@
SIZE_LITTLE, // spriggan
SIZE_SMALL, // halfling/kobold/gnome
SIZE_MEDIUM, // human/elf/dwarf
- SIZE_LARGE, // troll/ogre
- SIZE_BIG, // centaur/naga/large quadrupeds
+ SIZE_LARGE, // troll/ogre/centaur/naga
+ SIZE_BIG, // large quadrupeds
SIZE_GIANT, // giant
SIZE_HUGE, // dragon
NUM_SIZE_LEVELS,
Modified: trunk/crawl-ref/source/player.cc
===================================================================
--- trunk/crawl-ref/source/player.cc 2007-04-01 20:50:54 UTC (rev 1177)
+++ trunk/crawl-ref/source/player.cc 2007-04-01 21:00:28 UTC (rev 1178)
@@ -4736,11 +4736,11 @@
if (psize == PSIZE_TORSO || psize == PSIZE_PROFILE)
ret = SIZE_MEDIUM;
else
- ret = SIZE_BIG;
+ ret = SIZE_LARGE;
break;
case SP_CENTAUR:
- ret = (psize == PSIZE_TORSO) ? SIZE_MEDIUM : SIZE_BIG;
+ ret = (psize == PSIZE_TORSO) ? SIZE_MEDIUM : SIZE_LARGE;
break;
case SP_SPRIGGAN:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|