Fix for stuff not breaking right.

Still an issue with Herbalism & Green Terra, though.
This commit is contained in:
GJ
2012-03-09 18:27:03 -05:00
parent 0d14918946
commit 132388fe3f
3 changed files with 7 additions and 10 deletions

View File

@ -328,15 +328,14 @@ public class Skills
case GIGA_DRILL_BREAKER:
case SUPER_BREAKER:
case LEAF_BLOWER:
if (!m.blockBreakSimulate(block, player, true)) {
activate = false;
break;
}
if (!ability.blockCheck(block)) {
activate = false;
break;
}
break;
default:
activate = false;
break;
}
return activate;