summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-02-16 01:10:56 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-02-16 01:10:56 +0000
commite71b9760374db9f0958dc8b9861d5f20d1d626a7 (patch)
treea6f16642b66ec1a1580a73bbffa705fe5724e007
parenta0ee0b2d45b3db45f932f2abefd6d4c56018660b (diff)
downloadhercules-e71b9760374db9f0958dc8b9861d5f20d1d626a7.tar.gz
hercules-e71b9760374db9f0958dc8b9861d5f20d1d626a7.tar.bz2
hercules-e71b9760374db9f0958dc8b9861d5f20d1d626a7.tar.xz
hercules-e71b9760374db9f0958dc8b9861d5f20d1d626a7.zip
- Fixed pets displaying "strangely" when they did not have their pet armor
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5291 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt2
-rw-r--r--src/map/clif.c6
-rw-r--r--src/map/map.h2
3 files changed, 6 insertions, 4 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 82331be13..8583617bc 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. EVERYTHING ELSE
GOES INTO TRUNK AND WILL BE MERGED INTO STABLE BY VALARIS AND WIZPUTER. -- VALARIS
2006/02/15
+ * Fixed pets displaying "strangely" when they did not have their pet armor.
+ [Skotlex]
* Added battle config option pk_level_range for specifying valid level
ranges to engage in PK (battle/misc.conf) [Skotlex]
* Added battle config allow_es_magic_player to enable SL_S* skills to work
diff --git a/src/map/clif.c b/src/map/clif.c
index ebc065bde..6b9f2d71b 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -1578,7 +1578,7 @@ static int clif_pet0078(struct pet_data *pd, unsigned char *buf) {
WBUFW(buf,6)=pd->speed;
WBUFW(buf,14)=view_class;
WBUFW(buf,16)=battle_config.pet_hair_style;
- if((view_class = itemdb_viewid(pd->equip)) > 0)
+ if(pd->equip && (view_class = itemdb_viewid(pd->equip)) > 0)
WBUFW(buf,20)=view_class;
else
WBUFW(buf,20)=pd->equip;
@@ -1680,7 +1680,7 @@ static int clif_pet007b(struct pet_data *pd, unsigned char *buf) {
WBUFW(buf,6)=pd->speed;
WBUFW(buf,14)=view_class;
WBUFW(buf,16)=battle_config.pet_hair_style;
- if ((view_class = itemdb_viewid(pd->equip)) > 0)
+ if (pd->equip && (view_class = itemdb_viewid(pd->equip)) > 0)
WBUFW(buf,20)=view_class;
else
WBUFW(buf,20)=pd->equip;
@@ -6958,7 +6958,7 @@ int clif_pet_equip(struct pet_data *pd,int nameid)
WBUFW(buf,0)=0x1a4;
WBUFB(buf,2)=3;
WBUFL(buf,3)=pd->bl.id;
- if((view = itemdb_viewid(nameid)) > 0)
+ if(nameid && (view = itemdb_viewid(nameid)) > 0)
WBUFL(buf,7)=view;
else
WBUFL(buf,7)=nameid;
diff --git a/src/map/map.h b/src/map/map.h
index da04f6d0b..70c6b4ec1 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -1139,7 +1139,6 @@ typedef enum {
CELL_CHKNOPASS, // 通過不可(セルタイプ1,5)
CELL_GETTYPE, // セルタイプを返す
CELL_GETCELLTYPE,
- CELL_CHKSTACK,
CELL_CHKNPC=0x10, // タッチタイプのNPC(セルタイプ0x80フラグ)
CELL_CHKREGEN, // cells that improve regeneration
CELL_CHKPNEUMA,
@@ -1148,6 +1147,7 @@ typedef enum {
CELL_CHKLANDPROTECTOR,
CELL_CHKMOONLIT,
CELL_CHKICEWALL,
+ CELL_CHKSTACK,
} cell_t;
// map_setcell()で使用されるフラグ
enum {