* Fixed CR_SLIMPITCHER passing item requirement index to itemdb_search when used by a monster (bugreport:5021, since r6791).
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14959 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
2a28207ffd
commit
38210eebbd
@ -1,5 +1,7 @@
|
|||||||
Date Added
|
Date Added
|
||||||
|
|
||||||
|
2011/09/18
|
||||||
|
* Fixed CR_SLIMPITCHER passing item requirement index to itemdb_search when used by a monster (bugreport:5021, since r6791). [Ai4rei]
|
||||||
2011/09/17
|
2011/09/17
|
||||||
* Rental items no longer expire in cart and storage. The packet does not support this and rentals cannot be put in on official either (since r14082, related r14083). [Ai4rei]
|
* Rental items no longer expire in cart and storage. The packet does not support this and rentals cannot be put in on official either (since r14082, related r14083). [Ai4rei]
|
||||||
- Corrected packet 0x299 (ZC_CASH_ITEM_DELETE) missing inventory index field (since r13370).
|
- Corrected packet 0x299 (ZC_CASH_ITEM_DELETE) missing inventory index field (since r13370).
|
||||||
|
@ -6408,7 +6408,7 @@ int skill_castend_pos2(struct block_list* src, int x, int y, int skillid, int sk
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
int i = skilllv%11 - 1;
|
int i = skilllv%11 - 1;
|
||||||
struct item_data *item = itemdb_search(i);
|
struct item_data *item;
|
||||||
i = skill_db[skillid].itemid[i];
|
i = skill_db[skillid].itemid[i];
|
||||||
item = itemdb_search(i);
|
item = itemdb_search(i);
|
||||||
potion_flag = 1;
|
potion_flag = 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user