Use boolean over Boolean

This commit is contained in:
nossr50 2020-12-31 16:46:49 -08:00
parent 9ba8af9f6e
commit e4af53a535

View File

@ -140,7 +140,7 @@ public final class BlockUtils {
* @return true if the block should affected by Super Breaker, false
* otherwise
*/
public static Boolean affectedBySuperBreaker(BlockState blockState) {
public static boolean affectedBySuperBreaker(BlockState blockState) {
if(mcMMO.getMaterialMapStore().isIntendedToolPickaxe(blockState.getType()))
return true;