mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-11 04:22:00 +01:00
Merge branch 'mc1.15/dev' into mc1.16/dev
This commit is contained in:
commit
f41f7b3efa
3 changed files with 27 additions and 3 deletions
|
@ -102,9 +102,11 @@ public class CapabilityMinecartController implements ICapabilitySerializable<Com
|
|||
|
||||
if (world.isRemote && carts.containsKey(uniqueID)) {
|
||||
MinecartController minecartController = carts.get(uniqueID);
|
||||
AbstractMinecartEntity minecartEntity = minecartController.cart();
|
||||
if (minecartEntity != null && minecartEntity.getEntityId() != cart.getEntityId())
|
||||
continue; // Away with you, Fake Entities!
|
||||
if (minecartController != null) {
|
||||
AbstractMinecartEntity minecartEntity = minecartController.cart();
|
||||
if (minecartEntity != null && minecartEntity.getEntityId() != cart.getEntityId())
|
||||
continue; // Away with you, Fake Entities!
|
||||
}
|
||||
}
|
||||
|
||||
cartsWithCoupling.remove(uniqueID);
|
||||
|
@ -145,6 +147,8 @@ public class CapabilityMinecartController implements ICapabilitySerializable<Com
|
|||
.getPos();
|
||||
Map<UUID, MinecartController> carts = loadedMinecartsByUUID.get(event.getWorld());
|
||||
for (MinecartController minecartController : carts.values()) {
|
||||
if (minecartController == null)
|
||||
continue;
|
||||
if (!minecartController.isPresent())
|
||||
continue;
|
||||
AbstractMinecartEntity cart = minecartController.cart();
|
||||
|
|
|
@ -216,6 +216,16 @@ public class BlazeBurnerBlock extends Block implements ITE<BlazeBurnerTileEntity
|
|||
builder.addLootPool(poolBuilder.rolls(ConstantRange.of(1)));
|
||||
return builder;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean hasComparatorInputOverride(BlockState p_149740_1_) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getComparatorInputOverride(BlockState state, World p_180641_2_, BlockPos p_180641_3_) {
|
||||
return Math.max(0, state.get(HEAT_LEVEL).ordinal() -1);
|
||||
}
|
||||
|
||||
@OnlyIn(Dist.CLIENT)
|
||||
public void animateTick(BlockState state, World world, BlockPos pos, Random random) {
|
||||
|
|
|
@ -97,6 +97,16 @@ public class LitBlazeBurnerBlock extends Block {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean hasComparatorInputOverride(BlockState p_149740_1_) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getComparatorInputOverride(BlockState state, World p_180641_2_, BlockPos p_180641_3_) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
public VoxelShape getCollisionShape(BlockState state, IBlockReader reader, BlockPos pos,
|
||||
|
|
Loading…
Reference in a new issue