Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ changelog.txt

loader-neoforge/.cache
loader-neoforge/config

# ClientDevBridge session state (golden images are intentionally kept)
.clientdevbridge/*
!.clientdevbridge/golden/
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ plugins {
id 'com.diffplug.spotless' version '7.2.1' apply false
id 'com.modrinth.minotaur' version '2.+' apply false

id 'net.fabricmc.fabric-loom' version '1.17-SNAPSHOT' apply false
id 'net.neoforged.moddev' version '2.0.141' apply false
id 'net.fabricmc.fabric-loom' version '1.18.2' apply false
id 'net.neoforged.moddev' version '2.0.147' apply false
id 'net.minecraftforge.accesstransformers' version '5.0.3' apply false
id 'net.minecraftforge.gradle' version '[7.0.21,8.0)' apply false
}
Expand Down
16 changes: 8 additions & 8 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ group=org.cyclops.structuredcrafting
java_version=25

# Common
minecraft_version=26.2
minecraft_version=26.3
mod_name=StructuredCrafting
mod_author=rubensworks (aka kroeser)
mod_id=structuredcrafting
Expand All @@ -14,23 +14,23 @@ issue_tracker_url=https://github.com/CyclopsMC/StructuredCrafting/issues
display_url=https://www.curseforge.com/minecraft/mc-mods/structured-crafting
description=Craft stuff in your world, automatically.
fingerprint=bd0353b3e8a2810d60dd584e256e364bc3bedd44
neo_form_version=26.2-1
neo_form_version=26.3-1
curseforge_project_id=233151
modrinth_project_id=GTi2kHAW

# Fabric
fabric_version=0.152.2+26.2
fabric_loader_version=0.19.3
fabric_version=0.161.0+26.3
fabric_loader_version=0.19.5
# Dependencies
fabric_forgeconfigapiport_version=26.2.0
fabric_forgeconfigapiport_version=26.3.0

# NeoForge
neoforge_version=26.2.0.6-beta
neoforge_version=26.3.0.7-beta
neoforge_loader_version_range=[4,)
neoforge_update_json_url=https://raw.githubusercontent.com/CyclopsMC/Versions/master/neoforge_update/structured-crafting.json

# Forge
forge_version=65.0.0
forge_version=66.0.2
forge_loader_version_range=[2,)
forge_update_json_url=https://raw.githubusercontent.com/CyclopsMC/Versions/master/forge_update/structured-crafting.json

Expand All @@ -42,4 +42,4 @@ org.gradle.configuration-cache=true
org.gradle.configureondemand=true

# Common dependencies
cyclopscore_version=1.30.0-1038
cyclopscore_version=1.30.0-1159
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.cyclops.structuredcrafting.block;

import com.mojang.serialization.MapCodec;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.world.InteractionHand;
Expand All @@ -15,7 +14,6 @@
import net.minecraft.world.level.block.entity.BlockEntity;
import net.minecraft.world.level.block.entity.BlockEntityTicker;
import net.minecraft.world.level.block.entity.BlockEntityType;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.block.state.StateDefinition;
import net.minecraft.world.level.block.state.properties.BlockStateProperties;
Expand All @@ -33,7 +31,6 @@
*/
public class BlockStructuredCrafter extends BlockWithEntity {

public static final MapCodec<BlockStructuredCrafter> CODEC = BlockBehaviour.simpleCodec(BlockStructuredCrafter::new);

public static final EnumProperty<Direction> FACING = BlockStateProperties.FACING;

Expand All @@ -44,10 +41,6 @@ public BlockStructuredCrafter(Block.Properties properties) {
.setValue(FACING, Direction.DOWN));
}

@Override
protected MapCodec<? extends BaseEntityBlock> codec() {
return CODEC;
}

@Override
@Nullable
Expand Down
Loading