summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-03-08 12:07:43 -0600
committerJared Adams <jaxad0127@gmail.com>2009-03-08 12:07:43 -0600
commit0e3104c6b19dbc70bf0828507107018b9b7d38da (patch)
treecb65d7b2d3e2d292de4c601731a486bd48f23edd /src/map/pc.c
parentd85a3f95704fdf5832cb1236936796b71c3b05a2 (diff)
downloadtmwa-0e3104c6b19dbc70bf0828507107018b9b7d38da.tar.gz
tmwa-0e3104c6b19dbc70bf0828507107018b9b7d38da.tar.bz2
tmwa-0e3104c6b19dbc70bf0828507107018b9b7d38da.tar.xz
tmwa-0e3104c6b19dbc70bf0828507107018b9b7d38da.zip
Remove packet versions from map server
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index e6efe45..a4f0662 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -1969,12 +1969,7 @@ int pc_calcstatus(struct map_session_data* sd,int first)
if(b_class != sd->view_class) {
clif_changelook(&sd->bl,LOOK_BASE,sd->view_class);
-#if PACKETVER < 4
- pc_set_weapon_look(sd);
- clif_changelook(&sd->bl,LOOK_SHIELD,sd->status.shield);
-#else
clif_changelook(&sd->bl,LOOK_WEAPON,0);
-#endif
}
if( memcmp(b_skill,sd->status.skill,sizeof(sd->status.skill)) || b_attackrange != sd->attackrange)
@@ -5816,13 +5811,8 @@ int pc_equiplookall(struct map_session_data *sd)
{
nullpo_retr(0, sd);
-#if PACKETVER < 4
- pc_set_weapon_look(sd);
- clif_changelook(&sd->bl,LOOK_SHIELD,sd->status.shield);
-#else
clif_changelook(&sd->bl,LOOK_WEAPON,0);
// clif_changelook(&sd->bl,LOOK_SHOES,0);
-#endif
clif_changelook(&sd->bl,LOOK_HEAD_BOTTOM,sd->status.head_bottom);
clif_changelook(&sd->bl,LOOK_HEAD_TOP,sd->status.head_top);
clif_changelook(&sd->bl,LOOK_HEAD_MID,sd->status.head_mid);