summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/map/clif.c8
-rw-r--r--src/map/pc.c1
2 files changed, 5 insertions, 4 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 4feaa15..8fc119e 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -1303,7 +1303,7 @@ int clif_spawnpc(struct map_session_data *sd) {
if (map[sd->bl.m].flag.rain)
clif_specialeffect(&sd->bl, 161, 1);
- clif_changelook_accessories(&sd->bl, NULL);
+// clif_changelook_accessories(&sd->bl, NULL);
return 0;
}
@@ -3549,8 +3549,8 @@ clif_changelook_accessories(struct block_list *bl, struct map_session_data *dest
{
int i;
- for (i = LOOK_SHOES; i <= LOOK_LAST; i++)
- clif_changelook_towards(bl, i, 0, dest);
+ for (i = LOOK_SHOES; i <= LOOK_LAST; i++)
+ clif_changelook_towards(bl, i, 0, dest);
}
@@ -7265,7 +7265,7 @@ void clif_parse_LoadEndAck(int fd,struct map_session_data *sd)
skill_status_change_start(&sd->bl,SC_BROKNARMOR,0,0,0,0,0,0);
}
- clif_changelook_accessories(sd, NULL);
+// clif_changelook_accessories(sd, NULL);
map_foreachinarea(clif_getareachar,sd->bl.m,sd->bl.x-AREA_SIZE,sd->bl.y-AREA_SIZE,sd->bl.x+AREA_SIZE,sd->bl.y+AREA_SIZE,0,sd);
}
diff --git a/src/map/pc.c b/src/map/pc.c
index 996b1c1..64057e7 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -6324,6 +6324,7 @@ pc_signal_advanced_equipment_change(struct map_session_data *sd,int n)
clif_changelook(&sd->bl, LOOK_MISC1, 0);
if(sd->status.inventory[n].equip & 0x0080)
clif_changelook(&sd->bl, LOOK_MISC2, 0);
+ return 0;
}