mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-27 05:18:08 +01:00
Fixed SmartBE's not being marked as virtual by Ponder
- minor improvements to ponderUI animations
This commit is contained in:
parent
9620acec04
commit
dce985737c
3 changed files with 5 additions and 4 deletions
|
@ -185,7 +185,7 @@ repositories {
|
|||
}
|
||||
maven {
|
||||
// Location of the maven for Ponder, Catnip
|
||||
name 'createmod maven'
|
||||
name = 'createmod maven'
|
||||
url 'https://maven.createmod.net'
|
||||
}
|
||||
maven {
|
||||
|
|
|
@ -28,8 +28,8 @@ jei_minecraft_version = 1.19.2
|
|||
jei_version = 11.2.0.254
|
||||
curios_minecraft_version = 1.19.2
|
||||
curios_version = 5.1.1.0
|
||||
catnip_version = 0.6.3
|
||||
ponder_version = 0.6.3
|
||||
catnip_version = 0.6.5
|
||||
ponder_version = 0.6.5
|
||||
|
||||
cc_tweaked_enable = true
|
||||
cc_tweaked_minecraft_version = 1.19.2
|
||||
|
|
|
@ -17,6 +17,7 @@ import com.simibubi.create.foundation.blockEntity.behaviour.BlockEntityBehaviour
|
|||
import com.simibubi.create.foundation.utility.IInteractionChecker;
|
||||
import com.simibubi.create.foundation.utility.IPartialSafeNBT;
|
||||
|
||||
import net.createmod.ponder.foundation.VirtualBlockEntity;
|
||||
import net.minecraft.core.BlockPos;
|
||||
import net.minecraft.nbt.CompoundTag;
|
||||
import net.minecraft.network.FriendlyByteBuf;
|
||||
|
@ -29,7 +30,7 @@ import net.minecraftforge.fluids.capability.CapabilityFluidHandler;
|
|||
import net.minecraftforge.items.CapabilityItemHandler;
|
||||
|
||||
public abstract class SmartBlockEntity extends CachedRenderBBBlockEntity
|
||||
implements IPartialSafeNBT, IInteractionChecker, ISpecialBlockEntityItemRequirement {
|
||||
implements IPartialSafeNBT, IInteractionChecker, ISpecialBlockEntityItemRequirement, VirtualBlockEntity {
|
||||
|
||||
private final Map<BehaviourType<?>, BlockEntityBehaviour> behaviours = new HashMap<>();
|
||||
private boolean initialized = false;
|
||||
|
|
Loading…
Reference in a new issue