Fixed my brakes. >.<

This commit is contained in:
GJ 2012-02-28 00:18:55 -05:00
parent 2b9baaf0ea
commit e5922bf3e7
3 changed files with 28 additions and 2 deletions

View File

@ -84,18 +84,25 @@ public enum AbilityType
{ {
case BERSERK: case BERSERK:
PP.setBerserkMode(bool); PP.setBerserkMode(bool);
break;
case SUPER_BREAKER: case SUPER_BREAKER:
PP.setSuperBreakerMode(bool); PP.setSuperBreakerMode(bool);
break;
case GIGA_DRILL_BREAKER: case GIGA_DRILL_BREAKER:
PP.setGigaDrillBreakerMode(bool); PP.setGigaDrillBreakerMode(bool);
break;
case GREEN_TERRA: case GREEN_TERRA:
PP.setGreenTerraMode(bool); PP.setGreenTerraMode(bool);
break;
case SKULL_SPLIITER: case SKULL_SPLIITER:
PP.setSkullSplitterMode(bool); PP.setSkullSplitterMode(bool);
break;
case TREE_FELLER: case TREE_FELLER:
PP.setTreeFellerMode(bool); PP.setTreeFellerMode(bool);
break;
case SERRATED_STRIKES: case SERRATED_STRIKES:
PP.setSerratedStrikesMode(bool); PP.setSerratedStrikesMode(bool);
break;
} }
} }
@ -127,18 +134,25 @@ public enum AbilityType
{ {
case BERSERK: case BERSERK:
PP.setBerserkInformed(bool); PP.setBerserkInformed(bool);
break;
case SUPER_BREAKER: case SUPER_BREAKER:
PP.setSuperBreakerInformed(bool); PP.setSuperBreakerInformed(bool);
break;
case GIGA_DRILL_BREAKER: case GIGA_DRILL_BREAKER:
PP.setGigaDrillBreakerInformed(bool); PP.setGigaDrillBreakerInformed(bool);
break;
case GREEN_TERRA: case GREEN_TERRA:
PP.setGreenTerraInformed(bool); PP.setGreenTerraInformed(bool);
break;
case SKULL_SPLIITER: case SKULL_SPLIITER:
PP.setSkullSplitterInformed(bool); PP.setSkullSplitterInformed(bool);
break;
case TREE_FELLER: case TREE_FELLER:
PP.setTreeFellerInformed(bool); PP.setTreeFellerInformed(bool);
break;
case SERRATED_STRIKES: case SERRATED_STRIKES:
PP.setSerratedStrikesInformed(bool); PP.setSerratedStrikesInformed(bool);
break;
} }
} }

View File

@ -60,16 +60,22 @@ public enum ToolType
{ {
case AXE: case AXE:
PP.setAxePreparationMode(bool); PP.setAxePreparationMode(bool);
break;
case FISTS: case FISTS:
PP.setFistsPreparationMode(bool); PP.setFistsPreparationMode(bool);
break;
case HOE: case HOE:
PP.setHoePreparationMode(bool); PP.setHoePreparationMode(bool);
break;
case PICKAXE: case PICKAXE:
PP.setPickaxePreparationMode(bool); PP.setPickaxePreparationMode(bool);
break;
case SHOVEL: case SHOVEL:
PP.setShovelPreparationMode(bool); PP.setShovelPreparationMode(bool);
break;
case SWORD: case SWORD:
PP.setSwordsPreparationMode(bool); PP.setSwordsPreparationMode(bool);
break;
} }
} }
@ -99,16 +105,22 @@ public enum ToolType
{ {
case AXE: case AXE:
PP.setAxePreparationATS(ats); PP.setAxePreparationATS(ats);
break;
case FISTS: case FISTS:
PP.setFistsPreparationATS(ats); PP.setFistsPreparationATS(ats);
break;
case HOE: case HOE:
PP.setHoePreparationATS(ats); PP.setHoePreparationATS(ats);
break;
case PICKAXE: case PICKAXE:
PP.setPickaxePreparationATS(ats); PP.setPickaxePreparationATS(ats);
break;
case SHOVEL: case SHOVEL:
PP.setShovelPreparationATS(ats); PP.setShovelPreparationATS(ats);
break;
case SWORD: case SWORD:
PP.setSwordsPreparationATS(ats); PP.setSwordsPreparationATS(ats);
break;
} }
} }
@ -119,7 +131,7 @@ public enum ToolType
case AXE: case AXE:
return m.isAxes(is); return m.isAxes(is);
case FISTS: case FISTS:
return is.equals(Material.AIR); return is.getType().equals(Material.AIR);
case HOE: case HOE:
return m.isHoe(is); return m.isHoe(is);
case PICKAXE: case PICKAXE:

View File

@ -224,7 +224,7 @@ public class mcPlayerListener implements Listener
player.updateInventory(); player.updateInventory();
} }
if(LoadProperties.enableAbilities && (m.abilityBlockCheck(block) || block.getType() == Material.AIR)) if(LoadProperties.enableAbilities && (m.abilityBlockCheck(block) || block.getType().equals(Material.AIR)))
{ {
if(block != null && m.isHoe(is) && !mat.equals(Material.DIRT) && !mat.equals(Material.GRASS) && !mat.equals(Material.SOIL)) if(block != null && m.isHoe(is) && !mat.equals(Material.DIRT) && !mat.equals(Material.GRASS) && !mat.equals(Material.SOIL))
Skills.activationCheck(player, SkillType.HERBALISM); Skills.activationCheck(player, SkillType.HERBALISM);