Fixed issue with Disarm never working.

This commit is contained in:
GJ
2012-03-27 14:48:36 -04:00
parent ac384c5d95
commit f19b8a88d5
2 changed files with 4 additions and 4 deletions

View File

@ -43,13 +43,13 @@ public class Unarmed {
* @param PPa Profile of the attacking player
* @param defender The defending player
*/
public static void disarmProcCheck(PlayerProfile PPa, Player defender) {
public static void disarmProcCheck(Player attacker, Player defender) {
final int MAX_BONUS_LEVEL = 1000;
int skillLevel = PPa.getSkillLevel(SkillType.UNARMED);
int skillLevel = Users.getProfile(attacker).getSkillLevel(SkillType.UNARMED);
int skillCheck = m.skillCheck(skillLevel, MAX_BONUS_LEVEL);
if (defender.getItemInHand().getType().equals(Material.AIR)) {
if (attacker.getItemInHand().equals(Material.AIR)) {
if (random.nextInt(3000) <= skillCheck) {
ItemStack item = defender.getItemInHand();