diff options
author | shennetsind <ind@henn.et> | 2013-12-30 13:18:55 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-12-30 13:18:55 -0200 |
commit | e153b614bd6c3cfb85528ce847fdcb353fe31020 (patch) | |
tree | d2df4d0c6c05f4db7ba4fb04672ed712583af16d /src/common/mmo.h | |
parent | 0a7c002990ba08a39156b966cbd8e8e7ad3a4ce4 (diff) | |
download | hercules-e153b614bd6c3cfb85528ce847fdcb353fe31020.tar.gz hercules-e153b614bd6c3cfb85528ce847fdcb353fe31020.tar.bz2 hercules-e153b614bd6c3cfb85528ce847fdcb353fe31020.tar.xz hercules-e153b614bd6c3cfb85528ce847fdcb353fe31020.zip |
Fixed account expiration time
Login server no longer insta-denies expired accounts, as there may be free to play (or non paying) char server modes in the list, also made sure type 3 is sent as normal mode to non-expired accounts (client has a hardcoded if type == 3 => "claim need to pay & deny message"
Special Thanks to Beret.
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/common/mmo.h')
-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 bd5da6a9f..273edc42b 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -863,7 +863,7 @@ enum e_char_server_type { CST_MAINTENANCE = 1, CST_OVER18 = 2, CST_PAYING = 3, - CST_P2P = 4, + CST_F2P = 4, }; /* packet size constant for itemlist */ |