diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-10 13:26:08 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-10 13:26:08 +0000 |
commit | d8872dabd55e5db6962e5bcddd5d0ac469ef9312 (patch) | |
tree | a4c0e4c38ab17d3ac5c160b6e484c972c9e8e70f | |
parent | f3753f1cd474a84748b88991f74bcaa4f590f4ff (diff) | |
download | hercules-d8872dabd55e5db6962e5bcddd5d0ac469ef9312.tar.gz hercules-d8872dabd55e5db6962e5bcddd5d0ac469ef9312.tar.bz2 hercules-d8872dabd55e5db6962e5bcddd5d0ac469ef9312.tar.xz hercules-d8872dabd55e5db6962e5bcddd5d0ac469ef9312.zip |
Changing enum weapon_type in the mmo_charstatus structure back to integer until someone resolves that include mess...
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11705 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | src/common/mmo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index aa928fb9b..37dc03901 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -217,7 +217,7 @@ struct mmo_charstatus { int party_id,guild_id,pet_id,hom_id; int fame; - enum weapon_type weapon; + short weapon; // enum weapon_type short shield; // view-id short head_top,head_mid,head_bottom; |