From f343db3d09d69be4c99a0956d4b800fb300fcc57 Mon Sep 17 00:00:00 2001 From: Matthias <56599453+12rcu@users.noreply.github.com> Date: Thu, 11 Jan 2024 22:12:11 +0100 Subject: [PATCH] Fix Integrate recipes (#16) * fix crafting recipe object not initialized --- .../monstera/addon/entity/behaviour/BasicBehaviourEntity.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/kotlin/com/lop/devtools/monstera/addon/entity/behaviour/BasicBehaviourEntity.kt b/src/main/kotlin/com/lop/devtools/monstera/addon/entity/behaviour/BasicBehaviourEntity.kt index b08631e..61d6fa9 100644 --- a/src/main/kotlin/com/lop/devtools/monstera/addon/entity/behaviour/BasicBehaviourEntity.kt +++ b/src/main/kotlin/com/lop/devtools/monstera/addon/entity/behaviour/BasicBehaviourEntity.kt @@ -1,6 +1,7 @@ package com.lop.devtools.monstera.addon.entity.behaviour import com.lop.devtools.monstera.addon.entity.Entity +import com.lop.devtools.monstera.addon.recipes.CraftingRecipe import com.lop.devtools.monstera.files.animcontroller.AnimationControllers import com.lop.devtools.monstera.files.beh.animations.BehAnimations import com.lop.devtools.monstera.files.beh.entitiy.BehEntity @@ -9,4 +10,5 @@ class BasicBehaviourEntity(unsafeParent: Entity) : BehaviourEntityImpl(unsafePar override val unsafeRawEntity: BehEntity = BehEntity() override val unsafeRawAnimations: BehAnimations = BehAnimations() override val unsafeRawControllers: AnimationControllers = AnimationControllers() + override val unsafeRawCraftingRecipe: CraftingRecipe = CraftingRecipe() } \ No newline at end of file