Issue Information
-
#006584
-
3 - Medium
-
Fixed
Issue Confirmations
-
Yes (1)No (0)
Originally posted by RaGERO
I have no custom src mods
Cast Deluge first and then overlap it with Wall of Fog, it crashes on my server using latest svn r16716
-- *EDIT* --
Also would like to add that some skills of Professor are bugged, Land Protection for example doesn't remove when you cast another Land Protection, same goes with some other ground target skills of Professor like that of Deluge + Wall of Fog.
I have no custom src mods
Cast Deluge first and then overlap it with Wall of Fog, it crashes on my server using latest svn r16716
-- *EDIT* --
Also would like to add that some skills of Professor are bugged, Land Protection for example doesn't remove when you cast another Land Protection, same goes with some other ground target skills of Professor like that of Deluge + Wall of Fog.
Originally posted by malufett
cause of crash:
cause of crash:
if (skillid == PF_FOGWALL && alive == 2) { //Double duration of cells on top of Deluge/Suiton unit->limit *= 2; group->limit = unit->limit; }
Originally posted by RaGERO
So what's the fix sir?
So what's the fix sir?
Originally posted by wend
confirm
problem here, i think: (skil.c)
should be:
confirm
problem here, i think: (skil.c)
map_foreachincell(skill_cell_overlap,src->m,ux,uy,BL_SKILL,skillid, src);
should be:
map_foreachincell(skill_cell_overlap,src->m,ux,uy,BL_SKILL,skillid,&alive,src);
Edited by wend, 29 August 2012 - 09:31 PM.
Originally posted by RaGERO
Confirmed fixed!
Thanks wend! Also looked at the older revisions and there's '&alive' value in the function.
This also fixed the LP + Safety Wall issue and LP overlapping with other Prof's LP.
confirmproblem here, i think: (skil.c)
map_foreachincell(skill_cell_overlap,src->m,ux,uy,BL_SKILL,skillid, src);should be:map_foreachincell(skill_cell_overlap,src->m,ux,uy,BL_SKILL,skillid,&alive,src);
Confirmed fixed!
Thanks wend! Also looked at the older revisions and there's '&alive' value in the function.
This also fixed the LP + Safety Wall issue and LP overlapping with other Prof's LP.
Edited by RaGERO, 29 August 2012 - 11:45 PM.
Originally posted by Ind
blame on [rev=16687]
blame on [rev=16687]
Originally posted by Ind
Fixed in [rev=16719]
Fixed in [rev=16719]
moved issue from Skills