summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-06-13 17:39:00 +0300
committerAndrei Karas <akaras@inbox.ru>2018-06-13 17:39:00 +0300
commit751ad89f3bf937ba84c9d121fb70dc4bb44fcf10 (patch)
tree3b181cfabb01a256a7c8292c56781193a4f2fc04
parent529e561a665eb69818d4816e14b5e8cd68be83ab (diff)
downloadhercules-751ad89f3bf937ba84c9d121fb70dc4bb44fcf10.tar.gz
hercules-751ad89f3bf937ba84c9d121fb70dc4bb44fcf10.tar.bz2
hercules-751ad89f3bf937ba84c9d121fb70dc4bb44fcf10.tar.xz
hercules-751ad89f3bf937ba84c9d121fb70dc4bb44fcf10.zip
Fix compilation for packet version smaller than 20090805.
-rw-r--r--src/map/pc.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 0872c85e1..2aa788819 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -7385,7 +7385,8 @@ int pc_statusup2(struct map_session_data* sd, int type, int val)
* Update skill_lv for player sd
* Skill point allocation
*------------------------------------------*/
-int pc_skillup(struct map_session_data *sd,uint16 skill_id) {
+int pc_skillup(struct map_session_data *sd,uint16 skill_id)
+{
int index = 0;
nullpo_ret(sd);
@@ -7423,17 +7424,18 @@ int pc_skillup(struct map_session_data *sd,uint16 skill_id) {
clif->updatestatus(sd,SP_CARTINFO);
if (!pc_has_permission(sd, PC_PERM_ALL_SKILL)) // may skill everything at any time anyways, and this would cause a huge slowdown
clif->skillinfoblock(sd);
- } else if( battle_config.skillup_limit ){
- if (sd->sktree.second != 0)
+ } else if (battle_config.skillup_limit) {
+ if (sd->sktree.second != 0) {
#if PACKETVER >= 20090805
clif->msgtable_num(sd, MSG_UPGRADESKILLERROR_MORE_FIRSTJOBSKILL, sd->sktree.second);
#endif
- else if (sd->sktree.third != 0)
+ } else if (sd->sktree.third != 0) {
#if PACKETVER >= 20091013
clif->msgtable_num(sd, MSG_UPGRADESKILLERROR_MORE_SECONDJOBSKILL, sd->sktree.third);
#endif
- else if (pc->calc_skillpoint(sd) < 9) /* TODO: official response? */
+ } else if (pc->calc_skillpoint(sd) < 9) { /* TODO: official response? */
clif->messagecolor_self(sd->fd, COLOR_RED, "You need the basic skills");
+ }
}
return 0;
}