Fixes Ancilla and Spore Explosion consuming twice (#5882)

* Fixes Ancilla consuming two Blue Gemstones.
* Fixes Spore Explosion consuming another Mushroom Spore when the second attack hits.
This commit is contained in:
Aleos 2021-04-22 08:56:41 -04:00 committed by GitHub
parent 6ee25396c5
commit cc5425c2bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -19755,7 +19755,7 @@ Body:
SpRateCost: -10
ItemCost:
- Item: Blue_Gemstone
Amount: 1
Amount: 0
- Id: 2040
Name: AB_ADORAMUS
Description: Adoramus

View File

@ -5248,7 +5248,7 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, uint
if (skill_id == RA_ARROWSTORM)
status_change_end(src, SC_CAMOUFLAGE, INVALID_TIMER);
if( skill_id == AS_SPLASHER ) {
if( skill_id == AS_SPLASHER || skill_id == GN_SPORE_EXPLOSION ) {
map_freeblock_unlock(); // Don't consume a second gemstone.
return 0;
}