Partial sync with L2jServer HighFive Nov 6th 2015.

This commit is contained in:
MobiusDev
2015-11-07 01:14:51 +00:00
parent 4964c24da9
commit 57dcdb065d
107 changed files with 1331 additions and 266 deletions

View File

@ -204,8 +204,8 @@ public class AdminFightCalculator implements IAdminCommandHandler
double dmg2 = 0;
// ATTACK speed in milliseconds
int sAtk1 = npc1.calculateTimeBetweenAttacks(npc2, null);
int sAtk2 = npc2.calculateTimeBetweenAttacks(npc1, null);
int sAtk1 = npc1.calculateTimeBetweenAttacks();
int sAtk2 = npc2.calculateTimeBetweenAttacks();
// number of ATTACK per 100 seconds
sAtk1 = 100000 / sAtk1;
sAtk2 = 100000 / sAtk2;
@ -353,4 +353,4 @@ public class AdminFightCalculator implements IAdminCommandHandler
((L2MonsterInstance) npc2).deleteMe();
}
}
}
}