File tree Expand file tree Collapse file tree
src/integration/farmersdelight/java/plus/dragons/createcentralkitchen/mixin/farmersdelight/client Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- ## Create: Central Kitchen 2.2.6
1+ ## Create: Central Kitchen 2.3.0
22
3- Update for Create *** 6.0.8 *** . Require Create: Dragon+ 1.8.4 .
3+ Update for Create *** 6.0.9 *** . Require Create: Dragon+ 1.8.7 .
44
55### Fix
6- * Fix some messy mixin issues that might cause crash in certain situation .
6+ * Fix a mixin issue causing crash when FD is not installed .
Original file line number Diff line number Diff line change @@ -17,19 +17,19 @@ mod_id = create_central_kitchen
1717mod_artifact_id = create-central-kitchen
1818mod_name = Create: Central Kitchen
1919mod_license = LGPL-3.0-or-later
20- mod_version = 2.2.6
20+ mod_version = 2.3.0
2121mod_group_id = plus.dragons.createcentralkitchen
2222mod_authors = DragonsPlus
2323mod_description = Integrated cooking automation for Create
2424mod_github = https://github.com/DragonsPlusMinecraft/CreateCentralKitchen
2525mod_logo = icon.png
2626# Mod Dependencies
2727conditional_mixin_version = 0.6.4
28- create_version_production = 6.0.8
29- create_version_range = [6.0.8 ,)
30- create_dragons_plus_version = 1.8.4
31- create_dragons_plus_version_range = [1.8.4 ,)
32- farmers_delight_version = 1.21.1-1.2.9
28+ create_version_production = 6.0.9
29+ create_version_range = [6.0.9 ,)
30+ create_dragons_plus_version = 1.8.7
31+ create_dragons_plus_version_range = [1.8.7 ,)
32+ farmers_delight_version = 1.21.1-1.2.10
3333my_nethers_delight_version = 1.9
3434ends_delight_version = 2.5.1+neoforge.1.21.1
3535brewin_and_chewin_version = 4.4.1+1.21.1-neoforge
Original file line number Diff line number Diff line change 2020
2121import com .simibubi .create .content .processing .burner .BlazeBurnerBlockEntity ;
2222import com .simibubi .create .foundation .blockEntity .SmartBlockEntity ;
23+ import me .fallenbreath .conditionalmixin .api .annotation .Condition ;
24+ import me .fallenbreath .conditionalmixin .api .annotation .Restriction ;
2325import net .minecraft .core .BlockPos ;
2426import net .minecraft .world .level .block .entity .BlockEntityType ;
2527import net .minecraft .world .level .block .state .BlockState ;
2830import org .spongepowered .asm .mixin .injection .Inject ;
2931import org .spongepowered .asm .mixin .injection .callback .CallbackInfo ;
3032import plus .dragons .createcentralkitchen .client .burner .BlazeBurnerClientExtension ;
33+ import plus .dragons .createcentralkitchen .integration .ModIntegration ;
3134import plus .dragons .createcentralkitchen .integration .farmersdelight .burner .BlazeChefRenderOverride ;
3235
36+ @ Restriction (require = @ Condition (ModIntegration .Mods .FARMERSDELIGHT ))
3337@ Mixin (BlazeBurnerBlockEntity .class )
3438public abstract class BlazeBurnerBlockEntityMixin extends SmartBlockEntity implements BlazeBurnerClientExtension {
3539 public BlazeBurnerBlockEntityMixin (BlockEntityType <?> type , BlockPos pos , BlockState state ) {
You can’t perform that action at this time.
0 commit comments