Advertisement
ChristianSDM

correção soulshot l2jfrozen

Apr 17th, 2020
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. Fix Bug Soulshot falhando
  2. ################################################################################################################
  3. Altere o arquivo L2PcInstance.java
  4. Caminho:
  5. +gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2PcInstance.java
  6. Procure por:
  7. -public void rechargeAutoSoulShot(final boolean physical, final boolean magic, final boolean summon, final int atkTime)
  8. -{
  9. -ThreadPoolManager.getInstance().scheduleGeneral(new Runnable()
  10. -{
  11. -@Override
  12. -public void run()
  13. -{
  14. -rechargeAutoSoulShot(physical, magic, summon);
  15. -}
  16. -}, atkTime + 5);
  17. -}
  18.  
  19.  
  20.  
  21.  
  22. Substitua por:
  23. +public void rechargeAutoSoulShot(final boolean physical, final boolean magic, final boolean summon, final int atkTime)
  24. +{
  25. +rechargeAutoSoulShot(physical, magic, summon);
  26. +}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement