diff options
author | shennetsind <ind@henn.et> | 2013-05-05 17:39:47 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-05-05 17:39:47 -0300 |
commit | 8cc9012eb7e064677d2c9fa74fe1d1a09f90b581 (patch) | |
tree | ca3cfc4490a15db7603b724c4b7a516abe7fec6b /src/map/pc.h | |
parent | 3eb517a5ed648a06fe3158deda37c53fd140414b (diff) | |
download | hercules-8cc9012eb7e064677d2c9fa74fe1d1a09f90b581.tar.gz hercules-8cc9012eb7e064677d2c9fa74fe1d1a09f90b581.tar.bz2 hercules-8cc9012eb7e064677d2c9fa74fe1d1a09f90b581.tar.xz hercules-8cc9012eb7e064677d2c9fa74fe1d1a09f90b581.zip |
3rd Class Effects Update
http://hercules.ws/board/topic/561-3rd-class-effects-update/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 4f421f7c2..10891f6b4 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -6,6 +6,7 @@ #define _PC_H_ #include "../common/mmo.h" // JOB_*, MAX_FAME_LIST, struct fame_list, struct mmo_charstatus +#include "../common/ers.h" #include "../common/timer.h" // INVALID_TIMER #include "atcommand.h" // AtCommandType #include "battle.h" // battle_config @@ -513,12 +514,18 @@ struct map_session_data { unsigned char fontcolor; unsigned int hchsysch_tick; + /* [Ind/Hercules] */ + struct sc_display_entry **sc_display; + unsigned char sc_display_count; + // temporary debugging of bug #3504 const char* delunit_prevfile; int delunit_prevline; }; +struct eri *pc_sc_display_ers; + //Update this max as necessary. 55 is the value needed for Super Baby currently //Raised to 84 since Expanded Super Novice needs it. #define MAX_SKILL_TREE 84 |