diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-03 18:46:51 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-03 18:46:51 +0000 |
commit | d0241aaae2ee58987a5f65b4d69d2ee8d7408283 (patch) | |
tree | e527e091ee1fc99cd536292ea9746d930c4f619d /src/map/mob.c | |
parent | b66c4739b8a524efcd8d848265bd6f73d08db6c4 (diff) | |
download | hercules-d0241aaae2ee58987a5f65b4d69d2ee8d7408283.tar.gz hercules-d0241aaae2ee58987a5f65b4d69d2ee8d7408283.tar.bz2 hercules-d0241aaae2ee58987a5f65b4d69d2ee8d7408283.tar.xz hercules-d0241aaae2ee58987a5f65b4d69d2ee8d7408283.zip |
- Added a column in skill_cast_db for specifying can't walk delays.
- Removed the apply walk-delay entry from skill_cast_nodex
- Fixed autoloot dropping the item to the ground even when it was autolooted.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5450 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 1f66fccec..13df3a67c 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2095,7 +2095,7 @@ static void mob_item_drop(struct mob_data *md, unsigned int tick, struct delay_i ditem->first_sd->status.party_id?
party_search(ditem->first_sd->status.party_id):
NULL,
- ditem->first_sd,&ditem->item_data)
+ ditem->first_sd,&ditem->item_data) == 0
) {
aFree(ditem);
return;
|