Fixes Flame Launcher burning duration (#5148)

* Fixes #5147.
* Flame Launcher should give burning status for 7 * skill level.
* Burning no longer requires val2 or val3 values.
This commit is contained in:
Aleos 2020-06-29 13:17:11 -04:00 committed by GitHub
parent cde3b46e12
commit 87da34f28c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1754,7 +1754,7 @@ int skill_additional_effect(struct block_list* src, struct block_list *bl, uint1
} }
break; break;
case NC_FLAMELAUNCHER: case NC_FLAMELAUNCHER:
sc_start4(src,bl, SC_BURNING, 20 + 10 * skill_lv, skill_lv, 1000, src->id, 0, skill_get_time2(skill_id, skill_lv)); sc_start(src, bl, SC_BURNING, 20 + 10 * skill_lv, skill_lv, skill_get_time(skill_id, skill_lv));
break; break;
case NC_COLDSLOWER: case NC_COLDSLOWER:
// Status chances are applied officially through a check // Status chances are applied officially through a check