diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-09 03:51:18 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-09 03:51:18 +0000 |
commit | 400200948796c1fcd529b79a1026be4064c37b67 (patch) | |
tree | 92a0ae7b09c8b5b96e8e5d11bb3a47d8dc32c6de /src/common | |
parent | 43b44e59a86da8c2bc9103bb28ccf1cd9a86b104 (diff) | |
download | hercules-400200948796c1fcd529b79a1026be4064c37b67.tar.gz hercules-400200948796c1fcd529b79a1026be4064c37b67.tar.bz2 hercules-400200948796c1fcd529b79a1026be4064c37b67.tar.xz hercules-400200948796c1fcd529b79a1026be4064c37b67.zip |
- Modified guild exp to be an unsigned int rather than a signed one.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7059 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/mmo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index f842c4b0d..205c943c5 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -297,7 +297,8 @@ struct guild_skill { struct guild {
int guild_id;
short guild_lv, connect_member, max_member, average_lv;
- int exp,next_exp,skill_point;
+ unsigned int exp,next_exp;
+ int skill_point;
#ifdef TXT_ONLY
//FIXME: Gotta remove this variable completely, but doing so screws up the format of the txt save file...
int castle_id;
|