diff options
-rw-r--r-- | Changelog-Renewal.txt | 2 | ||||
-rw-r--r-- | src/map/clif.c | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Changelog-Renewal.txt b/Changelog-Renewal.txt index 649ea12d5..c5f2cc069 100644 --- a/Changelog-Renewal.txt +++ b/Changelog-Renewal.txt @@ -1,5 +1,7 @@ Date Added +2010/11/07 + * Applied clif_equiplist fix by Ai4rei to prevent client crash when equipment is broken/repaired and PACKETVER >= 20100629. Follow-up to r14368. (bugreport:4459) [Gepard] 2010/11/02 * Fixed an issue where two ushorts were being strcmp'd. Follow-up to r14442. (bugreport:4523) [Paradox924X] * Ensured character data is saved even when last map is the only value that has changed during save time. (bugreport:2218) [Paradox924X] diff --git a/src/map/clif.c b/src/map/clif.c index a13811913..a6865d833 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -2147,6 +2147,12 @@ void clif_equiplist(struct map_session_data *sd) WBUFL(buf,n*cmd+24)=sd->status.inventory[i].expire_time; WBUFW(buf,n*cmd+28)=0; //Unknown #endif +#if PACKETVER >= 20100629 + if (sd->inventory_data[i]->equip&EQP_HELM) + WBUFW(buf,n*cmd+30)= sd->inventory_data[i]->look; + else + WBUFW(buf,n*cmd+30)=0; +#endif n++; } if (n) { |