From 9542f51cd0eb19cd3d7d7ffcdcab4ba2f855cc6e Mon Sep 17 00:00:00 2001 From: marcus8448 <28928887+marcus8448@users.noreply.github.com> Date: Wed, 12 Jun 2019 16:49:20 -0700 Subject: [PATCH] Update Example Mod (#5781) --- mdk/src/main/java/com/example/examplemod/ExampleMod.java | 2 +- mdk/src/main/resources/META-INF/mods.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mdk/src/main/java/com/example/examplemod/ExampleMod.java b/mdk/src/main/java/com/example/examplemod/ExampleMod.java index 2f904b11e..a436462d1 100644 --- a/mdk/src/main/java/com/example/examplemod/ExampleMod.java +++ b/mdk/src/main/java/com/example/examplemod/ExampleMod.java @@ -1,7 +1,7 @@ package com.example.examplemod; import net.minecraft.block.Block; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.event.RegistryEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; diff --git a/mdk/src/main/resources/META-INF/mods.toml b/mdk/src/main/resources/META-INF/mods.toml index e87f17a37..8b35f0c0b 100644 --- a/mdk/src/main/resources/META-INF/mods.toml +++ b/mdk/src/main/resources/META-INF/mods.toml @@ -6,7 +6,7 @@ # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml modLoader="javafml" #mandatory # A version range to match for said mod loader - for regular FML @Mod it will be the forge version -loaderVersion="[25,)" #mandatory (24 is current forge version) +loaderVersion="[26,)" #mandatory (26 is current forge version) # A URL to refer people to when problems occur with this mod issueTrackerURL="http://my.issue.tracker/" #optional # A list of mods - how many allowed here is determined by the individual mod loader @@ -42,7 +42,7 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed mollis lacinia magn # Does this dependency have to exist - if not, ordering below must be specified mandatory=true #mandatory # The version range of the dependency - versionRange="[25,)" #mandatory + versionRange="[26,)" #mandatory # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory ordering="NONE" # Side this dependency is applied on - BOTH, CLIENT or SERVER @@ -51,6 +51,6 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed mollis lacinia magn [[dependencies.examplemod]] modId="minecraft" mandatory=true - versionRange="[1.13.2]" + versionRange="[1.14.2]" ordering="NONE" side="BOTH" \ No newline at end of file