diff options
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/atcommand.c | 4 | ||||
-rw-r--r-- | src/map/clif.c | 4 | ||||
-rw-r--r-- | src/map/npc.c | 2 | ||||
-rw-r--r-- | src/map/skill.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 717047709..ffa94ad0d 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -2594,7 +2594,7 @@ int atcommand_baselevelup(const int fd, struct map_session_data* sd, const char* level = atoi(message); if (!message || !*message || !level) { - clif_displaymessage(fd, "Please, enter a level adjustement (usage: @lvup/@blevel/@baselvlup <number of levels>)."); + clif_displaymessage(fd, "Please, enter a level adjustment (usage: @lvup/@blevel/@baselvlup <number of levels>)."); return -1; } @@ -2655,7 +2655,7 @@ int atcommand_joblevelup(const int fd, struct map_session_data* sd, const char* level = atoi(message); if (!message || !*message || !level) { - clif_displaymessage(fd, "Please, enter a level adjustement (usage: @joblvup/@jlevel/@joblvlup <number of levels>)."); + clif_displaymessage(fd, "Please, enter a level adjustment (usage: @joblvup/@jlevel/@joblvlup <number of levels>)."); return -1; } if (level > 0) { diff --git a/src/map/clif.c b/src/map/clif.c index 6e96d79a4..6ab8ea438 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -3766,7 +3766,7 @@ void clif_getareachar_unit(struct map_session_data* sd,struct block_list *bl) if (pd->vd.head_bottom) { //TODO: adjust clif_pet_equip() to support a 'target', then rewrite this mess into a function call - int fd = sd->fd; + int fd = sd->fd; WFIFOHEAD(fd,packet_len(0x1a4)); WFIFOW(fd,0) = 0x1a4; WFIFOB(fd,2) = 3; @@ -7482,7 +7482,7 @@ int clif_refresh(struct map_session_data *sd) nullpo_retr(-1, sd); clif_changemap(sd,sd->mapindex,sd->bl.x,sd->bl.y); clif_inventorylist(sd); - if(pc_iscarton(sd)){ + if(pc_iscarton(sd)) { clif_cartlist(sd); clif_updatestatus(sd,SP_CARTINFO); } diff --git a/src/map/npc.c b/src/map/npc.c index 2afd9421b..8c3a2f78e 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -2580,7 +2580,7 @@ static int npc_parse_mapflag(char* w1, char* w2, char* w3, char* w4) } else if (strcmpi(w3,"gvg")==0) { map[m].flag.gvg=state; - if (state && map[m].flag.pvp) + if (state && map[m].flag.pvp) { map[m].flag.pvp=0; ShowWarning("You can't set PvP and GvG flags for the same map! Removing PvP flag from %s\n", map[m].name); diff --git a/src/map/skill.c b/src/map/skill.c index 5e76f581f..dee052c43 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -4664,7 +4664,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in switch (i) { case SC_WEIGHT50: case SC_WEIGHT90: case SC_HALLUCINATION: case SC_STRIPWEAPON: case SC_STRIPSHIELD: case SC_STRIPARMOR: - case SC_STRIPHELM: case SC_CP_WEAPON: case SC_CP_SHIELD: + case SC_STRIPHELM: case SC_CP_WEAPON: case SC_CP_SHIELD: case SC_CP_ARMOR: case SC_CP_HELM: case SC_COMBO: case SC_STRFOOD: case SC_AGIFOOD: case SC_VITFOOD: case SC_INTFOOD: case SC_DEXFOOD: case SC_LUKFOOD: |