From 82cc35a532476d42b69f63f730e593c01a2d2dbc Mon Sep 17 00:00:00 2001 From: Aleos Date: Wed, 23 Jun 2021 10:05:03 -0400 Subject: [PATCH] Fixes Spore Explosion item consumption (#6044) * Spore Explosion will now properly consume the Bomb Mushroom Spore on skill use. Thanks to @limitro! --- src/map/skill.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/skill.cpp b/src/map/skill.cpp index f6dcaad9e2..e4a9c331f1 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -5214,7 +5214,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 || skill_id == GN_SPORE_EXPLOSION ) { + if( skill_id == AS_SPLASHER ) { map_freeblock_unlock(); // Don't consume a second gemstone. return 0; }