mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-10 20:45:10 +01:00
Merge branch 'mc1.15/dev' of https://github.com/Creators-of-Create/Create into mc1.15/dev
This commit is contained in:
commit
dcd0598e16
@ -1,12 +1,8 @@
|
||||
package com.simibubi.create.content.contraptions.components.crank;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.ParametersAreNonnullByDefault;
|
||||
|
||||
import com.simibubi.create.AllBlockPartials;
|
||||
import com.tterrag.registrate.util.entry.BlockEntry;
|
||||
|
||||
import net.minecraft.item.ItemGroup;
|
||||
import net.minecraft.item.ItemStack;
|
||||
@ -16,9 +12,6 @@ import net.minecraftforge.api.distmarker.OnlyIn;
|
||||
|
||||
@ParametersAreNonnullByDefault
|
||||
public class ValveHandleBlock extends HandCrankBlock {
|
||||
|
||||
public static final List<BlockEntry<ValveHandleBlock>> entries = new ArrayList<>();
|
||||
|
||||
private final boolean inCreativeTab;
|
||||
|
||||
public static ValveHandleBlock copper(Properties properties) {
|
||||
|
@ -40,7 +40,7 @@ import net.minecraftforge.fml.common.ObfuscationReflectionHelper;
|
||||
@ParametersAreNonnullByDefault
|
||||
public class BlazeBurnerBlockItem extends BlockItem {
|
||||
|
||||
private boolean capturedBlaze;
|
||||
private final boolean capturedBlaze;
|
||||
|
||||
public static BlazeBurnerBlockItem empty(Properties properties) {
|
||||
return new BlazeBurnerBlockItem(AllBlocks.BLAZE_BURNER.get(), properties, false);
|
||||
@ -104,7 +104,7 @@ public class BlazeBurnerBlockItem extends BlockItem {
|
||||
continue;
|
||||
|
||||
spawnCaptureEffects(world, VecHelper.getCenterOf(pos));
|
||||
if (world.isRemote)
|
||||
if (world.isRemote || player == null)
|
||||
return ActionResultType.SUCCESS;
|
||||
|
||||
giveBurnerItemTo(player, context.getItem(), context.getHand());
|
||||
@ -128,7 +128,7 @@ public class BlazeBurnerBlockItem extends BlockItem {
|
||||
|
||||
giveBurnerItemTo(player, heldItem, hand);
|
||||
entity.remove();
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
protected void giveBurnerItemTo(PlayerEntity player, ItemStack heldItem, Hand hand) {
|
||||
|
Loading…
Reference in New Issue
Block a user