diff options
author | Dastgir Pojee <dastgirp@gmail.com> | 2016-10-02 20:37:54 +0530 |
---|---|---|
committer | hemagx <ibrahem.h.basyone@gmail.com> | 2016-10-22 02:21:48 +0200 |
commit | 473ba564829a6d0153e320d1f302754442648ec7 (patch) | |
tree | 17b2470fcff090af25e854a4df0160b1f89eaa38 /src/map/pc.h | |
parent | 7c72c942d52915cb7c5c9692bd927772ad34bcca (diff) | |
download | hercules-473ba564829a6d0153e320d1f302754442648ec7.tar.gz hercules-473ba564829a6d0153e320d1f302754442648ec7.tar.bz2 hercules-473ba564829a6d0153e320d1f302754442648ec7.tar.xz hercules-473ba564829a6d0153e320d1f302754442648ec7.zip |
Implemented SU_BASIC_SKILL Skill of Summoner
Added Function for Basic Skills check.
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index fd446813f..2d6ca48a0 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -1094,6 +1094,7 @@ END_ZEROED_BLOCK; /* End */ bool (*process_chat_message) (struct map_session_data *sd, const char *message); void (*check_supernovice_call) (struct map_session_data *sd, const char *message); + bool (*check_basicskill) (struct map_session_data *sd, int level); }; #ifdef HERCULES_CORE |