Partial sync with L2jServer HighFive Nov 6th 2015.
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user