Fixed illegal character

This commit is contained in:
Auxilor 2020-12-12 11:18:44 +00:00
parent 5158b51664
commit 7ab1a35686

View File

@ -54,7 +54,7 @@ public class Dynamite extends Spell {
if(this.getConfig().getStrings(EcoEnchants.CONFIG_LOCATION + "blacklisted-blocks").contains(block1.getType().name().toLowerCase())) {
continue;
}
U
if(block1.getType().getHardness() > block.getType().getHardness() && this.getConfig().getBool(EcoEnchants.CONFIG_LOCATION + "hardness-check")) continue;
if(!AntigriefManager.canBreakBlock(player, block1)) continue;