diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-21 16:20:26 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-21 16:20:26 +0000 |
commit | 39253de1b1335b0c9f71d5bc31c1a6b5a95f6940 (patch) | |
tree | 44f84d16dc991ab884284292d6f4de9af41937eb /src/map/map.h | |
parent | 82e2517fa237679eb08818b0b600a28bb781ad07 (diff) | |
download | hercules-39253de1b1335b0c9f71d5bc31c1a6b5a95f6940.tar.gz hercules-39253de1b1335b0c9f71d5bc31c1a6b5a95f6940.tar.bz2 hercules-39253de1b1335b0c9f71d5bc31c1a6b5a95f6940.tar.xz hercules-39253de1b1335b0c9f71d5bc31c1a6b5a95f6940.zip |
* Added enumeration RC2_* for mob data 'race2' (bugreport:4561).
- Fixed race2-related bonus arrays using RC_MAX, rather than race2 maximum (since r6221, related r1277).
- Fixed bSubRace2 lacking bounds check (since r1257).
- Fixed bSubRace2 being documented as bSPSubRace2 (since r1257).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14480 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h index 199db618d..9f25249e2 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -211,6 +211,17 @@ enum { }; enum { + RC2_NONE = 0, + RC2_GOBLIN, + RC2_KOBOLD, + RC2_ORC, + RC2_GOLEM, + RC2_GUARDIAN, + RC2_NINJA, + RC2_MAX +}; + +enum { ELE_NEUTRAL=0, ELE_WATER, ELE_EARTH, |