mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Merge pull request #140 from nossr50/master
This commit is contained in:
commit
e54500fa90
@ -37,7 +37,7 @@ public class Archery
|
|||||||
pluginx.misc.arrowTracker.put(x, 0);
|
pluginx.misc.arrowTracker.put(x, 0);
|
||||||
if(attacker != null)
|
if(attacker != null)
|
||||||
{
|
{
|
||||||
if( (Math.random() * 1000 <= PPa.getSkillLevel(SkillType.ARCHERY)) || PPa.getSkillLevel(SkillType.ARCHERY) > 1000)
|
if(PPa.getSkillLevel(SkillType.ARCHERY) > 1000 || (Math.random() * 1000 <= PPa.getSkillLevel(SkillType.ARCHERY)))
|
||||||
{
|
{
|
||||||
pluginx.misc.arrowTracker.put(x, 1);
|
pluginx.misc.arrowTracker.put(x, 1);
|
||||||
}
|
}
|
||||||
@ -48,7 +48,7 @@ public class Archery
|
|||||||
{
|
{
|
||||||
if(attacker != null)
|
if(attacker != null)
|
||||||
{
|
{
|
||||||
if( (Math.random() * 1000 <= PPa.getSkillLevel(SkillType.ARCHERY)) || PPa.getSkillLevel(SkillType.ARCHERY) > 1000)
|
if(PPa.getSkillLevel(SkillType.ARCHERY) > 1000 || (Math.random() * 1000 <= PPa.getSkillLevel(SkillType.ARCHERY)))
|
||||||
{
|
{
|
||||||
pluginx.misc.arrowTracker.put(x, 1);
|
pluginx.misc.arrowTracker.put(x, 1);
|
||||||
}
|
}
|
||||||
|
@ -170,7 +170,7 @@ public class Mining
|
|||||||
{
|
{
|
||||||
PlayerProfile PP = Users.getProfile(player);
|
PlayerProfile PP = Users.getProfile(player);
|
||||||
|
|
||||||
if((Math.random() * 1000 <= PP.getSkillLevel(SkillType.MINING)) || PP.getSkillLevel(SkillType.MINING) > 1000)
|
if(PP.getSkillLevel(SkillType.MINING) > 1000 || (Math.random() * 1000 <= PP.getSkillLevel(SkillType.MINING)))
|
||||||
{
|
{
|
||||||
blockProcSimulate(block, player);
|
blockProcSimulate(block, player);
|
||||||
return;
|
return;
|
||||||
|
@ -742,7 +742,7 @@ public class Repair {
|
|||||||
PlayerProfile PP = Users.getProfile(player);
|
PlayerProfile PP = Users.getProfile(player);
|
||||||
if(player != null)
|
if(player != null)
|
||||||
{
|
{
|
||||||
if((Math.random() * 1000 <= PP.getSkillLevel(SkillType.REPAIR)) || PP.getSkillLevel(SkillType.REPAIR) > 1000)
|
if(PP.getSkillLevel(SkillType.REPAIR) > 1000 || (Math.random() * 1000 <= PP.getSkillLevel(SkillType.REPAIR)))
|
||||||
{
|
{
|
||||||
player.sendMessage(mcLocale.getString("Skills.FeltEasy"));
|
player.sendMessage(mcLocale.getString("Skills.FeltEasy"));
|
||||||
return true;
|
return true;
|
||||||
|
@ -49,7 +49,7 @@ public class WoodCutting
|
|||||||
Material mat = Material.getMaterial(block.getTypeId());
|
Material mat = Material.getMaterial(block.getTypeId());
|
||||||
if(player != null)
|
if(player != null)
|
||||||
{
|
{
|
||||||
if((Math.random() * 1000 <= PP.getSkillLevel(SkillType.WOODCUTTING)) || PP.getSkillLevel(SkillType.WOODCUTTING) > 1000)
|
if(PP.getSkillLevel(SkillType.WOODCUTTING) > 1000 || (Math.random() * 1000 <= PP.getSkillLevel(SkillType.WOODCUTTING)))
|
||||||
{
|
{
|
||||||
ItemStack item = new ItemStack(mat, 1, (short) 0, type);
|
ItemStack item = new ItemStack(mat, 1, (short) 0, type);
|
||||||
m.mcDropItem(block.getLocation(), item);
|
m.mcDropItem(block.getLocation(), item);
|
||||||
|
Loading…
Reference in New Issue
Block a user