Advertisement
warc222

by Romeo

Sep 24th, 2015
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. ### Eclipse Workspace Patch 1.0
  2. #P test
  3. Index: java/net/sf/l2j/gameserver/model/olympiad/AbstractOlympiadGame.java
  4. ===================================================================
  5. --- java/net/sf/l2j/gameserver/model/olympiad/AbstractOlympiadGame.java (revision 39)
  6. +++ java/net/sf/l2j/gameserver/model/olympiad/AbstractOlympiadGame.java (working copy)
  7. @@ -344,15 +343,13 @@
  8.  
  9. player.teleToLocation(player.getLastX(), player.getLastY(), player.getLastZ());
  10. player.setLastCords(0, 0, 0);
  11. +
  12. + for (L2Skill s : player.getAllSkills())
  13. + {
  14. + player.enableSkill(s);
  15. + }
  16. + player.sendSkillList();
  17. + player.sendPacket(new SkillCoolTime(player));
  18. }
  19.  
  20. public static final void rewardParticipant(L2PcInstance player, int[][] reward)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement