diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-02 12:18:24 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-02 12:18:24 +0000 |
commit | e1d0bdd2fcdcdb1452d0bf191b427459951e147f (patch) | |
tree | bf9e1919794a0505d003d3205e45b493261315f3 /src/map/pc.c | |
parent | ffc190d0ac0c1b6def3fb947c0fb36004fe6c13d (diff) | |
download | hercules-e1d0bdd2fcdcdb1452d0bf191b427459951e147f.tar.gz hercules-e1d0bdd2fcdcdb1452d0bf191b427459951e147f.tar.bz2 hercules-e1d0bdd2fcdcdb1452d0bf191b427459951e147f.tar.xz hercules-e1d0bdd2fcdcdb1452d0bf191b427459951e147f.zip |
Added itemid defines for Stone and Skull_ (used by Pick Stone skill and pvp skull drop, respectively).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13035 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index b87f871fa..8eabf3935 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -5019,7 +5019,7 @@ int pc_dead(struct map_session_data *sd,struct block_list *src) { struct item item_tmp; memset(&item_tmp,0,sizeof(item_tmp)); - item_tmp.nameid=7420; //PVP Skull item ID + item_tmp.nameid=ITEMID_SKULL_; item_tmp.identify=1; item_tmp.card[0]=CARD0_CREATE; item_tmp.card[1]=0; |