mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-11-10 12:34:11 +01:00
Merge https://github.com/Creators-of-Create/Create into mc1.15/experimental-rendering
This commit is contained in:
commit
6af884edb7
@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G
|
||||
org.gradle.daemon=false
|
||||
|
||||
# mod version info
|
||||
mod_version=0.3d
|
||||
mod_version=0.3e
|
||||
minecraft_version=1.15.2
|
||||
forge_version=31.2.47
|
||||
|
||||
|
@ -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 New Issue
Block a user