diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-08 15:18:32 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-03-08 15:18:32 -0600 |
commit | c8da743b969b251bab107125d4af82ec7f4e376c (patch) | |
tree | 6d499634d8dcd49d80ae869cb28cca58893b1160 /src/common | |
parent | 23c6c0e2c8b10bbecf1e673723914618170ac551 (diff) | |
download | tmwa-c8da743b969b251bab107125d4af82ec7f4e376c.tar.gz tmwa-c8da743b969b251bab107125d4af82ec7f4e376c.tar.bz2 tmwa-c8da743b969b251bab107125d4af82ec7f4e376c.tar.xz tmwa-c8da743b969b251bab107125d4af82ec7f4e376c.zip |
Strip some more out
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/mmo.h | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 4105135..377f0b8 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -8,7 +8,6 @@ #include "utils.h" // LCCWIN32 #ifdef CYGWIN -// txtやlogなどの書き出すファイルの改行コード #define RETCODE "\r\n" // (CR/LF:Windows系) #else #define RETCODE "\n" // (LF:Unix系) @@ -64,9 +63,6 @@ #define MAX_STATUS_TYPE 5 -#define WEDDING_RING_M 2634 -#define WEDDING_RING_F 2635 - #define CHAR_CONF_NAME "conf/char_athena.conf" struct item { @@ -95,21 +91,6 @@ struct global_reg { int value; }; -struct s_pet { - int account_id; - int char_id; - int pet_id; - short class; - short level; - short egg_id;//pet egg id - short equip;//pet equip name_id - short intimate;//pet friendly - short hungry;//pet hungry - char name[24]; - char rename_flag; - char incuvate; -}; - struct mmo_charstatus { int char_id; int account_id; @@ -122,7 +103,7 @@ struct mmo_charstatus { int hp,max_hp,sp,max_sp; short option,karma,manner; short hair,hair_color,clothes_color; - int party_id,guild_id,pet_id; + int party_id,guild_id; short weapon,shield; short head_top,head_mid,head_bottom; |