Advertisement
brounlimited

Untitled

Jan 2nd, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. In L2VipManagerInstance, Replace this:
  2. private static void addVips(L2PcInstance activeChar)
  3. {
  4. String text;
  5. L2Object object = activeChar.getTarget();
  6. L2PcInstance target = (L2PcInstance) object;
  7.  
  8. With this:
  9. private static void addVips(L2PcInstance activeChar)
  10. {
  11. String text;
  12. L2Object object = activeChar.getTarget();
  13. if (!(object instanceof L2PcInstance))
  14. return;
  15. L2PcInstance target = (L2PcInstance) object;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement