Fixed Disarm not working ever

This commit is contained in:
nossr50
2012-02-29 16:27:58 -08:00
parent 69dfd5645a
commit d099bc562b
3 changed files with 10 additions and 15 deletions

View File

@ -28,7 +28,7 @@ public class UnarmedCommand implements CommandExecutor {
if (PP.getSkillLevel(SkillType.UNARMED) < 1000)
percentage = String.valueOf((skillvalue / 3000) * 100);
else
percentage = String.valueOf((1000 / 3000) * 100);
percentage = "33.3";
if (PP.getSkillLevel(SkillType.UNARMED) < 1000)
arrowpercentage = String.valueOf(((skillvalue / 1000) * 100) / 2);