Fix issues with the test mods

This commit is contained in:
mezz 2018-03-29 22:33:40 -07:00
parent 297a1eb766
commit cfe3867a70
2 changed files with 4 additions and 4 deletions

View file

@ -28,7 +28,7 @@ import net.minecraftforge.fml.common.eventhandler.Event;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import org.apache.logging.log4j.Logger;
@Mod(modid = BonemealEventTest.MODID, name = "Bonemeal Event Test", version = "1.0", acceptableRemoteVersions = "*", dependencies = "required-after:asdkfaskld")
@Mod(modid = BonemealEventTest.MODID, name = "Bonemeal Event Test", version = "1.0", acceptableRemoteVersions = "*")
public class BonemealEventTest
{
public static final String MODID = "bonemealeventtest";

View file

@ -1,11 +1,11 @@
{
"ingredients": {
"nbt": "net.minecraftforge.debug.CraftingSystemTest$IngredientFactory"
"nbt": "net.minecraftforge.debug.gameplay.CraftingSystemTest$IngredientFactory"
},
"recipes": {
"free": "net.minecraftforge.debug.CraftingSystemTest$RecipeFactory"
"free": "net.minecraftforge.debug.gameplay.CraftingSystemTest$RecipeFactory"
},
"conditions": {
"true": "net.minecraftforge.debug.CraftingSystemTest$ConditionFactory"
"true": "net.minecraftforge.debug.gameplay.CraftingSystemTest$ConditionFactory"
}
}