Skip to content

Commit

Permalink
[194] Correct value for CLASS_DRUID constant; swap bracers and belt s…
Browse files Browse the repository at this point in the history
…lots in character-sheet.php
  • Loading branch information
Shadez committed May 16, 2010
1 parent 2985a2c commit e7672df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions includes/defines.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
* @revision 137
* @revision 194
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
Expand Down Expand Up @@ -36,7 +36,7 @@
define('CLASS_SHAMAN', 0x07);
define('CLASS_MAGE', 0x08);
define('CLASS_WARLOCK', 0x09);
define('CLASS_DRUID', 0x0A);
define('CLASS_DRUID', 0x0B);

/*** Races ***/
define('RACE_HUMAN', 0x01);
Expand Down Expand Up @@ -356,10 +356,10 @@
define('INV_SHOULDER', 2);
define('INV_SHIRT', 3);
define('INV_CHEST', 4);
define('INV_BELT', 5);
define('INV_BRACERS', 5);
define('INV_LEGS', 6);
define('INV_BOOTS', 7);
define('INV_BRACERS', 8);
define('INV_BELT', 8);
define('INV_GLOVES', 9);
define('INV_RING_1', 10);
define('INV_RING_2', 11);
Expand Down

0 comments on commit e7672df

Please sign in to comment.