Fix Edify Saplings on Fabric, Expand CCA Range
- Initializes Edified Sapling features in FabrixHexInitializer. - Changes Cardinal Components req to >=4.1.4 . Not ideal, as will not give reliable errors if someone installs 5.0, but I can't get a range of values to be supported.
This commit is contained in:
parent
c00815b7b9
commit
b6035a19d8
3 changed files with 5 additions and 2 deletions
|
@ -3,7 +3,7 @@ fabricVersion=0.51.1+1.18.2
|
|||
fabricLoaderVersion=0.14.5
|
||||
|
||||
fiberVersion=0.23.0-2
|
||||
cardinalComponentsVersion=4.1.4
|
||||
cardinalComponentsVersion=4.2.0
|
||||
serializationHooksVersion=0.1.0+1.18.095e8a6
|
||||
|
||||
reiVersion=8.0.442
|
||||
|
|
|
@ -11,6 +11,7 @@ import at.petrak.hexcasting.common.entities.HexEntities
|
|||
import at.petrak.hexcasting.common.items.ItemJewelerHammer
|
||||
import at.petrak.hexcasting.common.lib.*
|
||||
import at.petrak.hexcasting.common.loot.HexLootHandler
|
||||
import at.petrak.hexcasting.common.misc.AkashicTreeGrower
|
||||
import at.petrak.hexcasting.common.misc.Brainsweeping
|
||||
import at.petrak.hexcasting.common.misc.PlayerPositionRecorder
|
||||
import at.petrak.hexcasting.common.recipe.HexRecipeSerializers
|
||||
|
@ -97,6 +98,8 @@ object FabricHexInitializer : ModInitializer {
|
|||
|
||||
HexLootFunctions.registerSerializers(bind(Registry.LOOT_FUNCTION_TYPE))
|
||||
|
||||
AkashicTreeGrower.INSTANCE
|
||||
|
||||
// Done with soft implements in forge
|
||||
val flameOn = FlammableBlockRegistry.getDefaultInstance()
|
||||
for (log in listOf(
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
"minecraft": "=1.18.2",
|
||||
"java": ">=17",
|
||||
"fabric-language-kotlin": ">=1.7.4+kotlin.1.6.21",
|
||||
"cardinal-components": "~4.1.4",
|
||||
"cardinal-components": ">=4.1.4",
|
||||
"patchouli": ">=1.18.2-69",
|
||||
"paucal": "~0.4.6"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue