Page 1 of 1

Re: Divine Summoner Transfer Pain Stuck

Posted: Tue Jun 14, 2016 8:37 pm
by HorridoJoho
l2mmo3d wrote:solved
What was the solution?

I ask because when you solve something it could be useful for other ppl in the commnity which have the same problem.

Re: Divine Summoner Transfer Pain Stuck

Posted: Tue Jun 14, 2016 10:11 pm
by Sacrifice
Share your knowledgements... :+1:

Re: Divine Summoner Transfer Pain Stuck

Posted: Thu Jun 16, 2016 8:07 am
by Sacrifice
l2mmo3d wrote:I added getEffectList().stopAllToggles(); to l2PcInstance.java located src/main/java/com/l2jserver/gameserver/model/actor/instance/l2PcInstance.java


look for this at line 4763

public void untransform()
{
if (_transformation != null)
{
setQueuedSkill(null, false, false);
_transformation.onUntransform(this);
_transformation = null;
getEffectList().stopSkillEffects(false, AbnormalType.TRANSFORM);
sendSkillList();
sendPacket(new SkillCoolTime(this));
broadcastUserInfo();

change it to this

public void untransform()
{
if (_transformation != null)
{
setQueuedSkill(null, false, false);
_transformation.onUntransform(this);
_transformation = null;
getEffectList().stopSkillEffects(false, AbnormalType.TRANSFORM);
getEffectList().stopAllToggles();
sendSkillList();
sendPacket(new SkillCoolTime(this));
broadcastUserInfo();
Tested and works... like a charm???. Eh?

Re: Divine Summoner Transfer Pain Stuck

Posted: Sun Jun 19, 2016 6:36 pm
by HorridoJoho
l2mmo3d wrote:I added getEffectList().stopAllToggles(); to l2PcInstance.java located src/main/java/com/l2jserver/gameserver/model/actor/instance/l2PcInstance.java

...
Thanks for your contribution. When our repositories come online again this fix will be included and you are mentioned in the commit message for reporting the issue and providing the patch for it.

Sacrifice wrote:Tested and works... like a charm???. Eh?
Thanks for the quick test. You are mentioned in the commit message as tester.

Re: Divine Summoner Transfer Pain Stuck

Posted: Sun Jun 19, 2016 7:56 pm
by Sacrifice
HorridoJoho wrote:
l2mmo3d wrote:I added getEffectList().stopAllToggles(); to l2PcInstance.java located src/main/java/com/l2jserver/gameserver/model/actor/instance/l2PcInstance.java

...
Thanks for your contribution. When our repositories come online again this fix will be included and you are mentioned in the commit message for reporting the issue and providing the patch for it.

Sacrifice wrote:Tested and works... like a charm???. Eh?
Thanks for the quick test. You are mentioned in the commit message as tester.
Okey :+1:

Re: Divine Summoner Transfer Pain Stuck

Posted: Sat Jul 02, 2016 11:58 pm
by HorridoJoho
This fix has been commited.