Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated to the Latest CoHF core & World & RedstoneFlux #715

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ mcp_mappings = snapshot_20171003

mfr_core_version = 1.0

cofhworld_version = 1.2.0.+
cofhcore_version = 4.5.1.+
cofhworld_version = 1.3.0.+
cofhcore_version = 4.6.2.+
rf_mc_version = 1.12
rf_version = 2.0.1.+
rf_version = 2.1.0.+
ccl_version = 3.1.5.+

jei_version = 4.8.5.147
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/powercrystals/minefactoryreloaded/MFRProps.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import codechicken.lib.CodeChickenLib;
import cofh.CoFHCore;
import cofh.cofhworld.CoFHWorld;
import cofh.redstoneflux.RedstoneFlux;
import cofh.redstoneflux.RedstoneFluxProps;
import net.minecraft.util.ResourceLocation;

import java.util.Locale;
Expand All @@ -17,7 +17,7 @@ public class MFRProps {

public static final String MOD_ID = "minefactoryreloaded";

public static final String DEPENDENCIES = CoFHCore.VERSION_GROUP + CodeChickenLib.MOD_VERSION_DEP + RedstoneFlux.VERSION_GROUP + CoFHWorld.VERSION_GROUP;
public static final String DEPENDENCIES = CoFHCore.VERSION_GROUP + CodeChickenLib.MOD_VERSION_DEP + RedstoneFluxProps.VERSION_GROUP + CoFHWorld.VERSION_GROUP;

public static final String MOD_NETWORK_CHANNEL = "MFReloaded";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package powercrystals.minefactoryreloaded.world;

import cofh.cofhworld.feature.IFeatureGenerator;
import cofh.cofhworld.world.IFeatureGenerator;
import com.google.common.primitives.Ints;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.BlockPos;
Expand Down