This commit is contained in:
DBotThePony 2025-03-29 21:08:54 +07:00
parent e3f9b8dc64
commit 20c58c578d
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -358,6 +358,9 @@ abstract class MatteryBlockEntity(type: BlockEntityType<*>, pos: BlockPos, state
}
override fun get(): T? {
if (isRemoved)
return null
return cache?.capability
}
@ -371,13 +374,13 @@ abstract class MatteryBlockEntity(type: BlockEntityType<*>, pos: BlockPos, state
if (!SERVER_IS_LIVE) return
val level = level as? ServerLevel
val creationVersion = ++currentVersion
if (level == null) {
cache = null
return
}
val creationVersion = ++currentVersion
val direction = blockRotation.side2Dir(side)
cache = BlockCapabilityCache.create(