Skip to content

Commit

Permalink
ensure CrT get loaded before JEI (#1315)
Browse files Browse the repository at this point in the history
  • Loading branch information
friendlyhj committed Jul 9, 2021
1 parent 7305cf1 commit 9062d74
Showing 1 changed file with 8 additions and 1 deletion.
Expand Up @@ -57,7 +57,14 @@
* Main mod class. Performs some general logic, initialization of the API and
* FML event handling.
*/
@Mod(modid = CraftTweaker.MODID, version = "4.1.20", name = CraftTweaker.NAME, acceptedMinecraftVersions = "[1.12]", updateJSON = "https://updates.blamejared.com/get?n=crafttweaker&gv=1.12.2")
@Mod(
modid = CraftTweaker.MODID,
version = "4.1.20",
name = CraftTweaker.NAME,
acceptedMinecraftVersions = "[1.12]",
updateJSON = "https://updates.blamejared.com/get?n=crafttweaker&gv=1.12.2",
dependencies = "before:jei"
)
public class CraftTweaker {

public static final String MODID = "crafttweaker";
Expand Down

0 comments on commit 9062d74

Please sign in to comment.