Jump to content

[1.9.4] Registering Blocks - Back to square one


TheA13X

Recommended Posts

Look, I'm sorry. Guess I'll open an issue for EVERY major MC Version...

 

I have a 1.8(.9) Mod and want to update it to 1.9(.4).

Choonster's TestMod3 is a pretty good reference , but it doesn't work for me.

Tell me what I've done wrong once again, please.

That's what I did:

 

  • registering block and blockitem (on preinit)
private static void registerLeavesBlock(Block block, String name)
    {
        block.setRegistryName(name); //<-sets Registry name HERE to make it more dynamic
        //GameRegistry.register(block,block.getRegistryName()); //<- is not needed I guess? I get something like a double registration error when using it
        GameRegistry.register(new ModLeavesItem(block),block.getRegistryName());//Uses a custom item class for some custumized behaviours. Yes it does extend ItemBlock
        Blocks.FIRE.setFireInfo(block, DEFAULT_LEAVES_FIRE_ENCOURAGEMENT, DEFAULT_LEAVES_FLAMMABILITY);
    }
  • register block variants (using the Client Proxy and executed on init)
public void registerBlockModels()
    {
        for (DefinesLeaves define : subBlocks())//contains the block instance and some additional information
        {
            ModelResourceLocation typeLocation = new ModelResourceLocation(getRegistryName(),"variant="+define.leavesSubBlockVariant().name().toLowerCase());
            ModLeavesItem blockItem = new ModLeavesItem(define.leavesBlock());
            ModelLoader.setCustomModelResourceLocation(blockItem,define.leavesSubBlockVariant().ordinal(),typeLocation);
            //ModelResourceLocation typeItemLocation = new ModelResourceLocation(getRegistryName().toString().substring(0,getRegistryName().toString().length()-1)+"_"+define.leavesSubBlockVariant().name().toLowerCase(),"inventory"); //
            //ModelBakery.registerItemVariants(blockItem,typeItemLocation); 
            //isn't needed as well, I guess, as setCustomModelResourceLocation already registeres the model into the bakery. I tried to use it anyway though, since my item model is saved in a file with the pattern "<block>_<variant>.json" while the blockstate is not.
        }
    }

 

  • My assets layout:
|-assets
 |-modid
  |-blockstates
   |-leaves0
   |-leaves1
   |-...
  |-models
   |-block
    |-leaves_type1
    |-leaves_type2
    |-leaves_type3
    |-...
   |-item
    |-leaves_type1
    |-leaves_type2
    |-leaves_type3
    |-item
    |-...
  • By the way, the localizing is broken too. I have a custom LangMap to fix that, but it shouldn't be broken in the first place. I assume it has to do with the same problem.

 

Thanks and stuff.

Edited by TheA13X

Sincerely,

A13XIS

Link to comment
Share on other sites

GameRegistry.register(block); //still needed

GameRegistry.register(new ModLeavesItem(block).setRegistryName(block.getRegistryName())); //non-deprecated version

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Do you have a crash? Or does it just not exist?

Also, you should give the block an actual registry name (eg. "mod_leaves" with quotations)  instead of just "name".

Apparently I'm addicted to these forums and can't help but read all the posts. So if I somehow help you, please click the "Like This" button, it helps.

Link to comment
Share on other sites

You're creating a new ModLeavesItem instance for the ModelLoader.setCustomModelResourceLocation call, don't do this. You need to use the ItemBlock you already registered. You can use Item.getItemFromBlock to get the Item form of a Block.

 

Do you want your items to use the models defined by your blockstates variant or do you want them to use individual item models? If it's the former, use a ModelResourceLocation with the registry name as the domain and path and the variant name as the variant. If it's the latter, use a ModelResourceLocation with the item model's name as the domain and path and any variant name (it won't be used).

 

I don't know why localisation wouldn't be working. Post the relevant code, and the contents and path of your lang file.

Edited by Choonster

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Thank you for the help.

I changed my code to:

That's what I did:

 

  • registering block and blockitem (on preinit)
private static void registerLeavesBlock(Block block, String name)
{
	block.setRegistryName(name);//value: UnlocalizedName<number>
	GameRegistry.register(block);
	GameRegistry.register(new ModLeavesItem(block).setRegistryName(block.getRegistryName()));
	Blocks.FIRE.setFireInfo(block, DEFAULT_LEAVES_FIRE_ENCOURAGEMENT, DEFAULT_LEAVES_FLAMMABILITY);
}
  • register block variants (using the Client Proxy and executed on init)
public void registerBlockModels()
{
	for (DefinesLeaves define : subBlocks())
	{
		ModelResourceLocation typeLocation = new ModelResourceLocation(getRegistryName(),"check_decay=true,decayable=true,variant="+define.leavesSubBlockVariant().name().toLowerCase());
      	        //added all properties to the variant string. This is, how the key in the blockstate file looks like
		//ModelResourceLocation typeItemLocation = new ModelResourceLocation(getRegistryName().toString().substring(0,getRegistryName().toString().length()-1)+"_"+define.leavesSubBlockVariant().name().toLowerCase(),"inventory");
		Item blockItem = Item.getItemFromBlock(define.leavesBlock());
		ModelLoader.setCustomModelResourceLocation(blockItem,define.leavesSubBlockVariant().ordinal(),typeLocation);
	}
}

 

Unfortunately it still doesn't work as you can see in the attached images

 

Regarding translation:

  • The Constructor
//-------------------Superclass--------------------//
protected LeavesBlock(Collection<? extends DefinesLeaves> subBlocks)
    {
        super(Material.LEAVES);
        checkArgument(!subBlocks.isEmpty());
        checkArgument(subBlocks.size() <= CAPACITY);
        this.subBlocks = ImmutableList.copyOf(subBlocks);
        this.setTickRandomly(true);
        this.setHardness(0.2F);
        this.setLightOpacity(1);
        this.setSoundType(SoundType.PLANT);
        setUnlocalizedName("leaves");
    }
//------------------Subclass----------------------//
public ModLeavesBlock(Iterable<? extends DefinesLeaves> subBlocks)
    {
        super(ImmutableList.copyOf(subBlocks));
        setCreativeTab(TheMod.INSTANCE.creativeTab());
        this.setDefaultState(this.blockState.getBaseState().withProperty(VARIANT, ModLogBlock.EnumType.ACEMUS).withProperty(CHECK_DECAY, Boolean.TRUE).withProperty(DECAYABLE, Boolean.TRUE));
    }
  • The custom getUnlocalizedName() function:
//-------------Block Class--------------------//
public final String getUnlocalizedName()
    {
        return String.format("tile.%s%s", domainPrefix(), getUnwrappedUnlocalizedName(super.getUnlocalizedName()));//domainPrefix() = "dendrology:", super.getUnlocalizedName() = "tile.leaves"
        //getUnwrappedUnlocalizedName(...) gets only the last part of the Unlocalized name path 
    }
//-------------Item Class-------------------//
@Override
public String getUnlocalizedName(ItemStack stack)
    {
        return super.getUnlocalizedName() + "." + ((LeavesBlock)block).getWoodType(stack.getMetadata()).name().toLowerCase();
    }

The langfile is located in /assets/lang and looks like this:

##############################
# Dendrology
#
# English - UNITED STATES (US) (en_US) localization
# Author: Scott Killen
#

#Blocks

### Logs
tile.dendrology:log.acemus.name=Acemus Wood
tile.dendrology:log.cedrum.name=Cedrum Wood
tile.dendrology:log.cerasu.name=Cerasu Wood
tile.dendrology:log.delnas.name=Delnas Wood
tile.dendrology:log.ewcaly.name=Ewcaly Wood
tile.dendrology:log.hekur.name=Hekur Wood
tile.dendrology:log.kiparis.name=Kiparis Wood
tile.dendrology:log.kulist.name=Kulist Wood
tile.dendrology:log.lata.name=Lata Wood
tile.dendrology:log.nucis.name=Nucis Wood
tile.dendrology:log.porffor.name=Porffor Wood
tile.dendrology:log.salyx.name=Salyx Wood
tile.dendrology:log.tuopa.name=Tuopa Wood

### Leaves
tile.dendrology:leaves.acemus.name=Acemus Leaves
tile.dendrology:leaves.cedrum.name=Cedrum Leaves
tile.dendrology:leaves.cerasu.name=Cerasu Leaves
tile.dendrology:leaves.delnas.name=Delnas Leaves
tile.dendrology:leaves.ewcaly.name=Ewcaly Leaves
tile.dendrology:leaves.hekur.name=Hekur Leaves
tile.dendrology:leaves.kiparis.name=Kiparis Leaves
tile.dendrology:leaves.kulist.name=Kulist Leaves
tile.dendrology:leaves.lata.name=Lata Leaves
tile.dendrology:leaves.nucis.name=Nucis Leaves
tile.dendrology:leaves.porffor.name=Porffor Leaves
tile.dendrology:leaves.salyx.name=Salyx Leaves
tile.dendrology:leaves.tuopa.name=Tuopa Leaves

#...

# Creatibe Tabs
itemGroup.dendrology=Ancient Trees
#...

# Config file comments
#...

# Items
item.dendrology:parcel.name=Ancient Parcel
dendrology:parcel.tooltip=What have the Ancients hidden within?

# Parcel contents
#...

 

2017-02-12_11.19.23.png

2017-02-12_11.21.22.png

2017-02-12_11.29.46.png

Sincerely,

A13XIS

Link to comment
Share on other sites

ModelLoader methods must be called in preInit, they won't do anything if called in init or later.

 

It looks like your assets aren't being loaded. Where is your assets folder located? It should be in src/main/resources.

 

If it's still not working, post the FML log (logs/fml-client-latest.log in the game directory) using Gist/Pastebin.

Edited by Choonster

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

All right. I finally managed to look in the console output and I found THIS

[16:10:53] [Client thread/ERROR] [FML]: Exception loading model for variant dendrology:leaves3#check_decay=true,decayable=false,variant=cedrum for blockstate "dendrology:leaves3[check_decay=true,decayable=false,variant=cedrum]"
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model dendrology:leaves3#check_decay=true,decayable=false,variant=cedrum with loader VariantLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:222) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:210) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:127) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111]
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111]
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
	at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?]
	at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?]
	... 21 more
[16:10:53] [Client thread/ERROR] [FML]: Exception loading blockstate for the variant dendrology:leaves3#check_decay=true,decayable=false,variant=cedrum: 
java.lang.Exception: Could not load model definition for variant dendrology:leaves3
	at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:255) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:121) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:210) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:127) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111]
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111]
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model dendrology:blockstates/leaves3.json
	at net.minecraft.client.renderer.block.model.ModelBakery.loadMultipartMBD(ModelBakery.java:205) ~[ModelBakery.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:185) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:251) ~[ModelLoader.class:?]
	... 20 more
Caused by: java.io.FileNotFoundException: dendrology:blockstates/leaves3.json
	at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:83) ~[SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadMultipartMBD(ModelBakery.java:198) ~[ModelBakery.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:185) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:251) ~[ModelLoader.class:?]
	... 20 more

Notice the line "Caused by: java.io.FileNotFoundException: dendrology:blockstates/leaves3.json"

This is true, since the path is "dendrology/blockstates/leaves3.json" 

...huh?

Sincerely,

A13XIS

Link to comment
Share on other sites

21 minutes ago, TheA13X said:

All right. I finally managed to look in the console output and I found THIS

Notice the line "Caused by: java.io.FileNotFoundException: dendrology:blockstates/leaves3.json"

This is true, since the path is "dendrology/blockstates/leaves3.json" 

...huh?

 

dendrology:blockstates/leaves3.json is a ResourceLocation, it corresponds to assets/dendrology/blockstates/leaves3.json on disk.

 

As I suspected from your previous post, none of your assets are being loaded. Is your assets folder in the correct location? Are your assets being copied to your IDE's build output directory? Are they included in the compiled JAR if you run the build Gradle task?

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

1 hour ago, Choonster said:

dendrology:blockstates/leaves3.json is a ResourceLocation, it corresponds to assets/dendrology/blockstates/leaves3.json on disk.

Are you sure? It's a FileNotFoundException which usually contains the path used for an I/O operation which is usually the real path.

Anyways. The assets folder is in src/main/resources like it should. It's also included in to the root folder of the mod's jar file. I've run the mod only over the IDE though and while the assets folder does exists in build/resources/main the IDE's output folder is build/classes/main. But it should work anyway right? I mean the assets is copied to the build folder.  

Also I have a custom LanguageMapper who reads the lang files on pre-init and if the assets were missing, minecraft would crash here.

if(test.getLocation().toString().startsWith("jar:"))
  fallback = Optional.of(new LangMap(TheMod.class.getResourceAsStream("/assets/dendrology/lang/en_US.lang")));
else{
  String pathToCode = "../build/resources/main";
  File test2 = new File(pathToCode);
  fallback = Optional.of(new LangMap(new FileInputStream(pathToCode+"/assets/dendrology/lang/en_US.lang")));
}

 

Edited by TheA13X

Sincerely,

A13XIS

Link to comment
Share on other sites

43 minutes ago, TheA13X said:

Are you sure? It's a FileNotFoundException which usually contains the path used for an I/O operation which is usually the real path.

 

Yes. If you look at the method that the exception is thrown from (SimpleReloadableResourceManager#getAllResources), you'll see that it throws a FileNotFoundException with the ResourceLocation as the message if none of the loaded resource packs contain the ResourceLocation's domain.

 

 

Quote

Anyways. The assets folder is in src/main/resources like it should. It's also included in to the root folder of the mod's jar file. I've run the mod only over the IDE though and while the assets folder does exists in build/resources/main the IDE's output folder is build/classes/main. But it should work anyway right? I mean the assets is copied to the build folder.  

Also I have a custom LanguageMapper who reads the lang files on pre-init and if the assets were missing, minecraft would crash here.


if(test.getLocation().toString().startsWith("jar:"))
  fallback = Optional.of(new LangMap(TheMod.class.getResourceAsStream("/assets/dendrology/lang/en_US.lang")));
else{
  String pathToCode = "../build/resources/main";
  File test2 = new File(pathToCode);
  fallback = Optional.of(new LangMap(new FileInputStream(pathToCode+"/assets/dendrology/lang/en_US.lang")));
}

 

 

build is Gradle's output directory, not the IDE's output directory (if you're using IntelliJ IDEA or Eclipse). classes is IntelliJ IDEA's output directory and bin is Eclipse's output directory.

 

I'm not sure why it's not working. Please post your code as a Git repository so I can debug it myself.

Edited by Choonster

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

1 hour ago, Choonster said:

build is Gradle's output directory, not the IDE's output directory

IntelliJ's output directory is project/build/classes


I have a git repository for the mod

LOOK

 

Wait. it hasn't updated to 1.9...

Now it has. (1.9 branch)

 

You'll also need it's dependency.

Found here (1.9 branch)

Edited by TheA13X

Sincerely,

A13XIS

Link to comment
Share on other sites

The 1.9 and master branches of dendrology-legacy-mod are still targeting 1.8.9.

 

dendrology-legacy-mod depends on the KoreSample project, but you don't have a settings.gradle file to include the project and the repository doesn't contain the project. If you're going to depend on the KoreSample project, add the KoreSample repository as a Git submodule and include it with a settings.gradle file.

 

Why did you create your own repositories from scratch instead of forking the original ones?

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

9 hours ago, Choonster said:

 

The 1.9 and master branches of dendrology-legacy-mod are still targeting 1.8.9.

 

Oh yeah. Didn't notice, sorry.

I fixed it now (for 1.9)

 

9 hours ago, Choonster said:

dendrology-legacy-mod depends on the KoreSample project, but you don't have a settings.gradle file to include the project

Not in the git repository. I have a multi-project-workspace in IntelliJ, so the settings file is in the superdirectory.

I'll add the KoreSample repository as a submodule after I figured out how, but you'll have to create the settings.gradle yourself.

 

9 hours ago, Choonster said:

 

Why did you create your own repositories from scratch instead of forking the original ones?

I just didn't know it's possible back then.

Edited by TheA13X

Sincerely,

A13XIS

Link to comment
Share on other sites

You didn't update build.gradle, but I'll try to work around this.

 

I highly recommend using a proper Git client (e.g. the CLI, IDEA or GitKraken) instead of manually uploading files on the GitHub website. This will make it much easier to commit exactly the right changes and prevent you from creating commits with no changes.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

3 minutes ago, Choonster said:

 

I highly recommend using a proper Git client (e.g. the CLI, IDEA or GitKraken) instead of manually uploading files on the GitHub website. This will make it much easier to commit exactly the right changes and prevent you from creating commits with no changes.

I know. That's what I normally do, I just had to do it this way, because the client told me that "everything is up to date"

Sincerely,

A13XIS

Link to comment
Share on other sites

ModSaplingBlock and ModSapling2Block both reference ProvidesPotionEffect, which doesn't appear to exist anymore. The methods that do this aren't called from anywhere.

 

The game crashes with a NullPointerException thrown from inc.a13xis.legacy.dendrology.TheMod#fallBackExsists because the fallback field is null. The mod isn't running from a JAR and ../build/resources/main doesn't exist because Gradle hasn't built the mod and IDEA doesn't output to that directory, so fallback is never assigned a non-null value. You should use Optional.absent() as the initial value of the field.

 

Your fallback LangMap completely ignores the client's locale and always translates to en_US. I suggest deleting it completely and fixing any issues you have with the vanilla translation system.

 

After fixing that, all models and localisations were working apart from three issues:

  • Errors were being logged for the missing models of the double slab Items. There's no need to register Item forms of your double slab Blocks.
  • Every stairs Item except stairs0 was being rendered as the missing model, depsite not logging any errors. The issue was caused by using the variant enum's ordinal as the metadata argument of ModelLoader.setCustomModelResourceLocation; stairs Items are always metadata 0.
  • Stairs Items were displaying as 2D textures in the inventory. This was fixed by removing the unnecessary display block from the item models.

 

You can't reference client-only classes (e.g. net.minecraft.client.resources.I18n, ModelLoader or ModelResourceLocation) from common code (e.g. your @Mod class), otherwise you'll crash the dedicated server. You can only do this in client-only classes referenced from your client proxy or in client-only methods.

 

SaplingParcel isn't going to work on the dedicated server because you've implemented the item spawning in your client proxy, which is only loaded on the physical client. Items must be spawned on the logical server, but there's no way to send an ItemStack display name in a chat message from the server to the client unless you translate on the server and ignore the client's locale. To solve this, you need to send a custom packet containing the ItemStack from the server to the client and then display the chat message in the packet's handler. I have an example of this for 1.11.2 here.

Edited by Choonster

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Oops. I'm sorry for making you so much work. At least the outdated build.gradle and the obsolete ProvidesPotionEffect implementation could be avoided if I had a Git client I can handle.

Thank you for the tips though. My code is pretty chaotic regarding the location of proxied functions, but I works. I never had a crash because of some non-server code.

 

4 hours ago, Choonster said:

SaplingParcel isn't going to work on the dedicated server because you've implemented the item spawning in your client proxy, which is only loaded on the physical client.

Well that's interesting. I'll keep it in mind. See, I implemented the Item spawning on both the common and the client proxy. The common one just returns the Item, the client side adds a translation first. Maybe it isn't ought to be used this way, but it seemed to work.

Sincerely,

A13XIS

Link to comment
Share on other sites

This is a good way to register your blocks.

 

EDIT: Exept youre in 1.9.4, so I guess it woudn't work for you. You should update.

Edited by Leomelonseeds

Apparently I'm addicted to these forums and can't help but read all the posts. So if I somehow help you, please click the "Like This" button, it helps.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Corrected item registration code: (for the ModItems class) public static final RegistryObject<Item> LEMON_JUICE_BOTTLE = ITEMS.register("lemon_juice_bottle", () -> new HoneyBottleItem(new Item.Properties().stacksTo(1) .food((new FoodProperties.Builder()).nutrition(3).saturationMod(0.25F) .effect(() -> new MobEffectInstance(MobEffects.DAMAGE_RESISTANCE, 1500), 0.5f).build())));
    • Apologies for the late reply. You'll need to register the item in ModItems; if you're following those tutorials, that's the only place you should ever register items. Otherwise, the mod will fail to register them properly and you'll get all sorts of interesting errors. Looking back at the code snipped I posted, I think that actually has some errors. I'm adding a lemon juice bottle to my mod just to ensure that it works correctly, and I will reply when I have solved the problems.
    • I might have an idea why your original method was causing so much trouble. See this while loop? You're only incrementing the number of blocks you've corrupted if you find one that you can corrupt. What happens if you can't find any? The while loop will run forever (a long time). This could happen if, for instance, the feature generates inside a vein of blocks that aren't marked as STONE_ABERRANTABLE. There are two alternate strategies I'd recommend to fix this.  First, you could simply increment numBlockCorrupted regardless of whether you've actually corrupted the block. This is the simplest and quickest way, and it should ensure that the loop runs no more than numBlocksToCorrupt times.  Alternatively, you could add a "kill switch" that keeps track of how many times the loop runs, and then ends it after a certain limit of your choosing. That could look something like this:  // Keeps track of how many blocks have been checked so far. int numBlocksChecked = 0; // Check up to twice as many blocks as you actually want to corrupt. // This is a good compromise between speed and actually getting the number of blocks // that you want to corrupt. int numBlocksToCheck = numBlocksToCorrupt * 2; // Modified the while loop condition to end after a certain number of blocks are checked. while (numBlocksCorrupted < numBlocksToCorrupt && numBlocksChecked < numBlocksToCheck) {                 // Generate a random position within the area, using the offset origin                 BlockPos randomPos = offsetOrigin.offset(                         ctx.random().nextInt(2 * areaSizeX + 1) - areaSizeX, // between -areaSize and areaSize                         ctx.random().nextInt(2 * areaSizeY + 1) - areaSizeY,                         ctx.random().nextInt(2 * areaSizeZ + 1) - areaSizeZ                 );                 // If the block at the random position is in the IS_ORE_ABERRANTABLE tag, replace it                 if (world.getBlockState(randomPos).is(ModBlockTags.STONE_ABERRANTABLE)) {                     world.setBlock(randomPos, surroundingBlockState, 2);                     numBlocksCorrupted++;                 } // Increment the number of blocks that you've checked. numBlocksChecked++;             } Let me know if you're still running into lag problems or are confused by my explanation.
    • So I have been trying to open modded 1.12.2 minecraft but it crashes when it opens and it says Exit Code-1 Can somebody please help me. Here is the crash report:   --- Minecraft Crash Report ---- WARNING: coremods are present:   IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar)   MixinLoader (viaforge-mc1122-3.6.0.jar)   McLib core mod (mclib-2.4.2-1.12.2.jar)   EFFLL (LiteLoader ObjectHolder fix) (ExtraFoamForLiteLoader-1.0.0.jar)   MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   LogisticsPipesCoreLoader (logisticspipes-0.10.3.114.jar)   AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar)   ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)   Regeneration (Regeneration-3.0.3.jar)   UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   ReflectorsPlugin (EnderStorage-1.12.2-2.5.0.jar)   EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar)   Controllable (controllable-0.11.2-1.12.2.jar)   craftfallessentials (CraftfallEssentials-1.12.2-1.2.6.jar)   SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.9.jar)   LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)   MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)   pymtech (PymTech-1.12.2-1.0.2.jar)   IvToolkit (IvToolkit-1.3.3-1.12.jar)   JeiUtilitiesLoadingPlugin (JEI-Utilities-1.12.2-0.2.12.jar)   LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar)   Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar)   FTBUltimineASM (ftb-ultimine-1202.3.5.jar)   ForgelinPlugin (Forgelin-1.8.4.jar)   Backpacked (backpacked-1.4.3-1.12.2.jar)   ForgelinPlugin (Forgelin-Continuous-1.9.23.0.jar)   HCASM (HammerLib-1.12.2-12.2.50.jar)   LucraftCoreExtendedID (LucraftCoreIDExtender.jar)   NWRTweak (redstonepaste-mc1.12-1.7.5.jar)   CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   LucraftCoreCoreMod (LucraftCore-1.12.2-2.4.17.jar)   EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   TransformerLoader (OpenComputers-MC1.12.2-1.8.5+179e1c3.jar)   llibrary (llibrary-core-1.0.11-1.12.2.jar)   ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar)   PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50.jar)   MekanismTweaks (mekanismtweaks-1.1.jar)   ShutdownPatcher (mcef-1.12.2-1.11-coremod.jar)   TNTUtilities Core (tnt_utilities-mc1.12-1.2.3.jar) Contact their authors BEFORE contacting forge // Shall we play a game? Time: 5/9/24 7:21 PM Description: Initializing game java.lang.NullPointerException: Initializing game     at net.minecraft.client.gui.GuiMainMenu.handler$zca000$hookViaForgeButton(GuiMainMenu.java:686)     at net.minecraft.client.gui.GuiMainMenu.func_73866_w_(GuiMainMenu.java:218)     at net.minecraft.client.gui.GuiScreen.func_146280_a(GuiScreen.java:478)     at net.minecraft.client.Minecraft.func_147108_a(Minecraft.java:1018)     at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:545)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378)     at net.minecraft.client.main.Main.main(SourceFile:123)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage2.relaunch.Relaunch.relaunch(Relaunch.java:124)     at gg.essential.loader.stage2.EssentialLoader.preloadEssential(EssentialLoader.java:328)     at gg.essential.loader.stage2.EssentialLoader.loadPlatform(EssentialLoader.java:116)     at gg.essential.loader.stage2.EssentialLoaderBase.load(EssentialLoaderBase.java:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage1.EssentialLoaderBase.load(EssentialLoaderBase.java:293)     at gg.essential.loader.stage1.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:44)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at gg.essential.loader.stage0.EssentialSetupTweaker.loadStage1(EssentialSetupTweaker.java:53)     at gg.essential.loader.stage0.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:26)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at java.lang.Class.newInstance(Class.java:442)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:98)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace:     at net.minecraft.client.gui.GuiMainMenu.handler$zca000$hookViaForgeButton(GuiMainMenu.java:686)     at net.minecraft.client.gui.GuiMainMenu.func_73866_w_(GuiMainMenu.java:218)     at net.minecraft.client.gui.GuiScreen.func_146280_a(GuiScreen.java:478)     at net.minecraft.client.Minecraft.func_147108_a(Minecraft.java:1018)     at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:545) -- Initialization -- Details: Stacktrace:     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378)     at net.minecraft.client.main.Main.main(SourceFile:123)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage2.relaunch.Relaunch.relaunch(Relaunch.java:124)     at gg.essential.loader.stage2.EssentialLoader.preloadEssential(EssentialLoader.java:328)     at gg.essential.loader.stage2.EssentialLoader.loadPlatform(EssentialLoader.java:116)     at gg.essential.loader.stage2.EssentialLoaderBase.load(EssentialLoaderBase.java:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage1.EssentialLoaderBase.load(EssentialLoaderBase.java:293)     at gg.essential.loader.stage1.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:44)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at gg.essential.loader.stage0.EssentialSetupTweaker.loadStage1(EssentialSetupTweaker.java:53)     at gg.essential.loader.stage0.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:26)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at java.lang.Class.newInstance(Class.java:442)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:98)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) -- System Details -- Details:     Minecraft Version: 1.12.2     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 912338720 bytes (870 MB) / 3868721152 bytes (3689 MB) up to 11542724608 bytes (11008 MB)     JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx12384m -Xms256m     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP 9.42 Powered by Forge 14.23.5.2860 380 mods loaded, 0 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     | State | ID                                | Version                         | Source                                             | Signature                                |     |:----- |:--------------------------------- |:------------------------------- |:-------------------------------------------------- |:---------------------------------------- |     |       | minecraft                         | 1.12.2                          | minecraft.jar                                      | None                                     |     |       | mcp                               | 9.42                            | minecraft.jar                                      | None                                     |     |       | FML                               | 8.0.99.99                       | forge-1.12.2-14.23.5.2860.jar                      | e3c3d50c7c986df74c645c0ac54639741c90a557 |     |       | forge                             | 14.23.5.2860                    | forge-1.12.2-14.23.5.2860.jar                      | e3c3d50c7c986df74c645c0ac54639741c90a557 |     |       | ivtoolkit                         | 1.3.3-1.12                      | minecraft.jar                                      | None                                     |     |       | controllable                      | 0.11.2                          | controllable-0.11.2-1.12.2.jar                     | None                                     |     |       | mclib_core                        | 2.4.2                           | minecraft.jar                                      | None                                     |     |       | backpacked                        | 1.4.2                           | backpacked-1.4.3-1.12.2.jar                        | None                                     |     |       | biometweakercore                  | 1.0.39                          | minecraft.jar                                      | None                                     |     |       | foamfixcore                       | 7.7.4                           | minecraft.jar                                      | None                                     |     |       | obfuscate                         | 0.4.2                           | minecraft.jar                                      | None                                     |     |       | opencomputers|core                | 1.8.5                           | minecraft.jar                                      | None                                     |     |       | tnt_utilities_core                | 1.2.3                           | minecraft.jar                                      | None                                     |     |       | essential                         | 1.0.0                           | Essential (forge_1.12.2).processed.jar             | None                                     |     |       | skinlayers3d                      | 1.2.0                           | 3dSkinLayers-forge-mc1.12.2-1.2.0.jar              | None                                     |     |       | servercountryflags                | 1.8.1                           | servercountryflags-1.8.1-1.12.2-FORGE.jar          | None                                     |     |       | securitycraft                     | v1.9.9                          | [1.12.2] SecurityCraft v1.9.9.jar                  | None                                     |     |       | acheads                           | 2.1.1                           | AbyssalCraft Heads-1.12.2-2.1.1.jar                | None                                     |     |       | acintegration                     | 1.11.3                          | AbyssalCraft Integration-1.12.2-1.11.3.jar         | None                                     |     |       | abyssalcraft                      | 1.10.5                          | AbyssalCraft-1.12.2-1.10.5.jar                     | None                                     |     |       | actuallyadditions                 | 1.12.2-r152                     | ActuallyAdditions-1.12.2-r152.jar                  | None                                     |     |       | actuallycomputers                 | @Version@                       | actuallycomputers-2.2.0.jar                        | None                                     |     |       | additionalpipes                   | 6.0.0.8                         | additionalpipes-6.0.0.8.jar                        | None                                     |     |       | advancementbook                   | 1.0.3                           | Advancement_Book-1.12-1.0.3.jar                    | None                                     |     |       | aether_legacy_addon               | 1.12.2-v1.3.0                   | Aether Continuation v1.3.0.jar                     | None                                     |     |       | aether_legacy                     | 1.5.3.2                         | aether-1.12.2-v1.5.4.0.jar                         | None                                     |     |       | aether                            | 0.3.0                           | aether_ii-1.12.2-0.3.0+build411-universal.jar      | None                                     |     |       | flyringbaublemod                  | 0.3.1_1.12-d4e654e              | angelRingToBauble-1.12-0.3.1.50+d4e654e.jar        | None                                     |     |       | applecore                         | 3.4.0                           | AppleCore-mc1.12.2-3.4.0.jar                       | None                                     |     |       | appleskin                         | 1.0.14                          | AppleSkin-mc1.12-1.0.14.jar                        | None                                     |     |       | appliedenergistics2               | rv6-stable-7                    | appliedenergistics2-rv6-stable-7.jar               | None                                     |     |       | ate                               | 1.0.0                           | ATE-1.5.jar                                        | None                                     |     |       | autopackager                      | 1.12                            | autopackager-1.12.jar                              | None                                     |     |       | autoreglib                        | 1.3-32                          | AutoRegLib-1.3-32.jar                              | None                                     |     |       | avaritia                          | 3.3.0                           | Avaritia-1.12.2-3.3.0.37-universal.jar             | None                                     |     |       | avaritiaddons                     | 1.12.2-1.9                      | Avaritiaddons-1.12.2-1.9.jar                       | None                                     |     |       | avaritiaio                        | @VERSION@                       | avaritiaio-1.4.jar                                 | None                                     |     |       | avaritiarecipemaker               | 1.0.0                           | avaritiarecipemaker-1.0.0.jar                      | None                                     |     |       | avaritiatweaks                    | 1.12.2-1.3.1                    | AvaritiaTweaks-1.12.2-1.3.1.jar                    | None                                     |     |       | avatarmod                         | 1.6.2                           | avatarmod-1.6.2.jar                                | None                                     |     |       | gorecore                          | 1.12.2-0.4.5                    | avatarmod-1.6.2.jar                                | None                                     |     |       | base                              | 3.14.0                          | base-1.12.2-3.14.0.jar                             | None                                     |     |       | baubles                           | 1.5.2                           | Baubles-1.12-1.5.2.jar                             | None                                     |     |       | bdlib                             | 1.14.4.1                        | bdlib-1.14.4.1-mc1.12.2.jar                        | None                                     |     |       | bedbugs                           | @VERSION@                       | BedBugs-1.12-1.0.1.jar                             | None                                     |     |       | betterbuilderswands               | 0.11.1                          | BetterBuildersWands-1.12-0.11.1.245+69d0d70.jar    | None                                     |     |       | betterquesting                    | 3.5.329                         | BetterQuesting-3.5.329.jar                         | None                                     |     |       | betterthanbunnies                 | 1.12.1-1.1.0                    | BetterThanBunnies-1.12.1-1.1.0.jar                 | None                                     |     |       | bibliocraft                       | 2.4.6                           | BiblioCraft[v2.4.6][MC1.12.2].jar                  | None                                     |     |       | bibliotheca                       | 1.3.6-1.12.2                    | bibliotheca-1.3.6-1.12.2.jar                       | None                                     |     |       | balancedorespawnores              | 1.0.0                           | Bifröst(V9).jar                                    | None                                     |     |       | biolib                            | 1.1.3                           | biolib-1.1.3.jar                                   | None                                     |     |       | biometweaker                      | 3.2.369                         | BiomeTweaker-1.12.2-3.2.369.jar                    | None                                     |     |       | blockdrops                        | 1.4.0                           | blockdrops-1.12.2-1.4.0.jar                        | None                                     |     |       | bloodmagic                        | 1.12.2-2.4.3-105                | BloodMagic-1.12.2-2.4.3-105.jar                    | None                                     |     |       | bookshelf                         | 2.3.590                         | Bookshelf-1.12.2-2.3.590.jar                       | None                                     |     |       | bookworm                          | 1.12.2-2.5.2.1                  | bookworm-1.12.2-2.5.2.1.jar                        | None                                     |     |       | botania                           | r1.10-364                       | Botania r1.10-364.4.jar                            | None                                     |     |       | brandonscore                      | 2.4.20                          | BrandonsCore-1.12.2-2.4.20.162-universal.jar       | None                                     |     |       | buildcraftcompat                  | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftbuilders                | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftcore                    | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftenergy                  | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftfactory                 | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftlib                     | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftrobotics                | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftsilicon                 | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcrafttransport               | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | btg                               | 1.1.1                           | By The Gods-1.12.2-1.1.1.jar                       | None                                     |     |       | camera                            | 1.0.10                          | camera-1.0.10.jar                                  | None                                     |     |       | cctweaked                         | 1.89.2                          | cc-tweaked-1.12.2-1.89.2.jar                       | None                                     |     |       | computercraft                     | 1.89.2                          | cc-tweaked-1.12.2-1.89.2.jar                       | None                                     |     |       | ceramics                          | 1.12-1.3.7b                     | Ceramics-1.12-1.3.7b.jar                           | None                                     |     |       | chameleon                         | 1.12-4.1.3                      | Chameleon-1.12-4.1.3.jar                           | None                                     |     |       | chameleon_morph                   | 1.2.2                           | chameleon-1.2.2.jar                                | None                                     |     |       | chancecubes                       | 1.12.2-5.0.2.385                | ChanceCubes-1.12.2-5.0.2.385.jar                   | None                                     |     |       | charset                           | 0.5.6.6                         | Charset-Lib-0.5.6.6.jar                            | None                                     |     |       | chesttransporter                  | 2.8.8                           | ChestTransporter-1.12.2-2.8.8.jar                  | None                                     |     |       | chickenchunks                     | 2.4.2.74                        | ChickenChunks-1.12.2-2.4.2.74-universal.jar        | None                                     |     |       | chickens                          | 6.0.4                           | chickens-6.0.4.jar                                 | None                                     |     |       | chisel                            | MC1.12.2-1.0.2.45               | Chisel-MC1.12.2-1.0.2.45.jar                       | None                                     |     |       | chiseled_me                       | 1.12-3.0.0.0-git-e5ce416        | chiseled-me-1.12-3.0.0.0-git-e5ce416.jar           | None                                     |     |       | chiseledadditions                 | @Version@                       | ChiseledAdditions-1.0.0.jar                        | None                                     |     |       | chiselsandbits                    | 14.33                           | chiselsandbits-14.33.jar                           | None                                     |     |       | cjcm                              | 1.0                             | cjcm-1.0.jar                                       | None                                     |     |       | clienttweaks                      | 3.1.11                          | ClientTweaks_1.12.2-3.1.11.jar                     | None                                     |     |       | clipboard                         | @VERSION@                       | Clipboard-1.12-1.3.0.jar                           | None                                     |     |       | clumps                            | 3.1.2                           | Clumps-3.1.2.jar                                   | None                                     |     |       | codechickenlib                    | 3.2.3.358                       | CodeChickenLib-1.12.2-3.2.3.358-universal.jar      | None                                     |     |       | colossalchests                    | 1.7.3                           | ColossalChests-1.12.2-1.7.3.jar                    | None                                     |     |       | comforts                          | 1.4.1.3                         | comforts-1.12.2-1.4.1.3.jar                        | None                                     |     |       | commoncapabilities                | 2.4.8                           | CommonCapabilities-1.12.2-2.4.8.jar                | None                                     |     |       | controlling                       | 3.0.10                          | Controlling-3.0.12.3.jar                           | None                                     |     |       | cookingforblockheads              | 6.5.0                           | CookingForBlockheads_1.12.2-6.5.0.jar              | None                                     |     |       | craftfallessentials               | 1.2.6                           | CraftfallEssentials-1.12.2-1.2.6.jar               | None                                     |     |       | ctgui                             | 1.0.0                           | CraftTweaker2-1.12-4.1.20.698.jar                  | None                                     |     |       | crafttweaker                      | 4.1.20                          | CraftTweaker2-1.12-4.1.20.698.jar                  | None                                     |     |       | crafttweakerjei                   | 2.0.3                           | CraftTweaker2-1.12-4.1.20.698.jar                  | None                                     |     |       | ctm                               | MC1.12.2-1.0.2.31               | CTM-MC1.12.2-1.0.2.31.jar                          | None                                     |     |       | cucumber                          | 1.1.3                           | Cucumber-1.12.2-1.1.3.jar                          | None                                     |     |       | custommainmenu                    | 2.0.9.1                         | CustomMainMenu-MC1.12.2-2.0.9.1.jar                | None                                     |     |       | cyclopscore                       | 1.6.7                           | CyclopsCore-1.12.2-1.6.7.jar                       | None                                     |     |       | darknesslib                       | 1.1.2                           | DarknessLib-1.12.2-1.1.2.jar                       | None                                     |     |       | darkutils                         | 1.8.230                         | DarkUtils-1.12.2-1.8.230.jar                       | None                                     |     |       | props                             | 2.6.3.7                         | Decocraft-2.6.3.7_1.12.2.jar                       | None                                     |     |       | deepresonance                     | 1.8.0                           | deepresonance-1.12-1.8.0.jar                       | None                                     |     |       | defaultoptions                    | 9.2.8                           | DefaultOptions_1.12.2-9.2.8.jar                    | None                                     |     |       | draconicadditions                 | 1.17.0                          | Draconic-Additions-1.12.2-1.17.0.45-universal.jar  | None                                     |     |       | draconicevolution                 | 2.3.28                          | Draconic-Evolution-1.12.2-2.3.28.354-universal.jar | None                                     |     |       | draconicalchemy                   | 0.2                             | draconicalchemy-0.2.jar                            | None                                     |     |       | maia_draconic_edition             | 1.0.0                           | DraconicEvolution_MAIA_1.0.0.jar                   | None                                     |     |       | eleccoreloader                    | 1.9.453                         | ElecCore-1.12.2-1.9.453.jar                        | None                                     |     |       | eleccore                          | 1.9.453                         | ElecCore-1.12.2-1.9.453.jar                        | None                                     |     |       | ebwizardry                        | 4.3.13                          | ElectroblobsWizardry-4.3.13.jar                    | None                                     |     |       | endercore                         | 1.12.2-0.5.78                   | EnderCore-1.12.2-0.5.78.jar                        | None                                     |     |       | enderio                           | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiobase                       | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduitsappliedenergistics | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduitsopencomputers      | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduitsrefinedstorage     | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduits                   | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiointegrationforestry        | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiointegrationtic             | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiointegrationticlate         | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioinvpanel                   | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiomachines                   | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiopowertools                 | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | gasconduits                       | 5.3.72                          | EnderIO-conduits-mekanism-1.12.2-5.3.72.jar        | None                                     |     |       | enderioendergy                    | 5.3.72                          | EnderIO-endergy-1.12.2-5.3.72.jar                  | None                                     |     |       | enderiozoo                        | 5.3.72                          | EnderIO-zoo-1.12.2-5.3.72.jar                      | None                                     |     |       | endermail                         | 1.1.3                           | EnderMail-1.12.2-1.1.3.jar                         | None                                     |     |       | enderstorage                      | 2.4.6.137                       | EnderStorage-1.12.2-2.4.6.137-universal.jar        | None                                     |     |       | enderstorage                      | 2.5.0                           | EnderStorage-1.12.2-2.5.0.jar                      | None                                     |     |       | endertweaker                      | 1.2.3                           | EnderTweaker-1.12.2-1.2.3.jar                      | None                                     |     |       | energyconverters                  | 1.3.7.30                        | energyconverters_1.12.2-1.3.7.30.jar               | None                                     |     |       | engineersworkshop                 | 1.4.0-1.12.2                    | EngineersWorkshop-1.4.0-1.12.2.jar                 | None                                     |     |       | entityculling                     | @VER@                           | entityculling-1.12.2-1.6.3.jar                     | None                                     |     |       | environmentaltech                 | 1.12.2-2.0.20.1                 | environmentaltech-1.12.2-2.0.20.1.jar              | None                                     |     |       | etlunar                           | 1.12.2-2.0.20.1                 | etlunar-1.12.2-2.0.20.1.jar                        | None                                     |     |       | motnt                             | 1.0.1                           | EvenMoreTNT-1.0.1.jar                              | None                                     |     |       | excompressum                      | 3.0.32                          | ExCompressum_1.12.2-3.0.32.jar                     | None                                     |     |       | exnihilocreatio                   | 1.12.2-0.4.7.2                  | exnihilocreatio-1.12.2-0.4.7.2.jar                 | None                                     |     |       | exnihiloomnia                     | 1.0                             | exnihiloomnia_1.12.2-0.0.2.jar                     | None                                     |     |       | expandableinventory               | 1.4.0                           | ExpandableInventory-1.12.2-1.4.0.jar               | None                                     |     |       | extrabitmanipulation              | 1.12.2-3.4.1                    | ExtraBitManipulation-1.12.2-3.4.1.jar              | None                                     |     |       | extra_spells                      | 1.2.0                           | ExtraSpells-1.12.2-1.2.0.jar                       | None                                     |     |       | extrautils2                       | 1.0                             | extrautils2-1.12-1.9.9.jar                         | None                                     |     |       | bigreactors                       | 1.12.2-0.4.5.68                 | ExtremeReactors-1.12.2-0.4.5.68.jar                | None                                     |     |       | fairylights                       | 2.1.10                          | fairylights-2.2.0-1.12.2.jar                       | None                                     |     |       | farmingforblockheads              | 3.1.28                          | FarmingForBlockheads_1.12.2-3.1.28.jar             | None                                     |     |       | fenceoverhaul                     | 1.3.4                           | FenceOverhaul-1.3.4.jar                            | None                                     |     |       | examplemod                        | 1.0                             | flatcolorblock-hexfinder.jar                       | None                                     |     |       | flatcoloredblocks                 | mc1.12-6.8                      | flatcoloredblocks-mc1.12-6.8.jar                   | None                                     |     |       | fluxnetworks                      | 4.1.0                           | FluxNetworks-1.12.2-4.1.1.34.jar                   | None                                     |     |       | foamfix                           | @VERSION@                       | foamfix-0.10.15-1.12.2.jar                         | None                                     |     |       | forestry                          | 5.8.2.387                       | forestry_1.12.2-5.8.2.387.jar                      | None                                     |     |       | forgelin                          | 1.8.4                           | Forgelin-1.8.4.jar                                 | None                                     |     |       | forgelin_continuous               | 1.9.23.0                        | Forgelin-Continuous-1.9.23.0.jar                   | None                                     |     |       | microblockcbe                     | 2.6.2.83                        | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     |       | forgemultipartcbe                 | 2.6.2.83                        | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     |       | minecraftmultipartcbe             | 2.6.2.83                        | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     |       | ftbultimine                       | 1202.3.5                        | ftb-ultimine-1202.3.5.jar                          | None                                     |     |       | ftbbackups                        | 1.1.0.1                         | FTBBackups-1.1.0.1.jar                             | None                                     |     |       | ftblib                            | 5.4.7.2                         | FTBLib-5.4.7.2.jar                                 | None                                     |     |       | ftbmoney                          | 1.2.0.47                        | FTBMoney-1.2.0.47.jar                              | None                                     |     |       | ftbquests                         | 1202.9.0.15                     | FTBQuests-1202.9.0.15.jar                          | None                                     |     |       | ftbutilities                      | 5.4.1.131                       | FTBUtilities-5.4.1.131.jar                         | None                                     |     |       | fw                                | 1.6.0                           | FullscreenWindowed-1.12-1.6.0.jar                  | None                                     |     |       | funtnt                            | 1.12.2.0                        | funtnt-1.12.2.0.jar                                | None                                     |     |       | cfm                               | 6.3.0                           | furniture-6.3.2-1.12.2.jar                         | None                                     |     |       | gardenofglass                     | sqrt(-1)                        | GardenOfGlass.jar                                  | None                                     |     |       | geckolib3                         | 3.0.30                          | geckolib-forge-1.12.2-3.0.31.jar                   | None                                     |     |       | advgenerators                     | 0.9.20.12                       | generators-0.9.20.12-mc1.12.2.jar                  | None                                     |     |       | googlyeyes                        | 7.1.1                           | GooglyEyes-1.12.2-7.1.1.jar                        | None                                     |     |       | grapplemod                        | 1.12.2-v13                      | grappling_hook_mod-1.12.2-v13.jar                  | None                                     |     |       | gravestone                        | 1.10.3                          | gravestone-1.10.3.jar                              | None                                     |     |       | gravitygun                        | 7.1.0                           | GravityGun-1.12.2-7.1.0.jar                        | None                                     |     |       | grue                              | 1.8.1                           | Grue-1.12.2-1.8.1.jar                              | None                                     |     |       | guideapi                          | 1.12-2.1.8-63                   | Guide-API-1.12-2.1.8-63.jar                        | None                                     |     |       | gunpowderlib                      | 1.12.2-1.1                      | GunpowderLib-1.12.2-1.1.jar                        | None                                     |     |       | cgm                               | 0.15.3                          | guns-0.15.3-1.12.2.jar                             | None                                     |     |       | gyth                              | 2.1.38                          | Gyth-1.12.2-2.1.38.jar                             | None                                     |     |       | hammercore                        | 12.2.50                         | HammerLib-1.12.2-12.2.50.jar                       | None                                     |     |       | harvest                           | 1.12-1.2.8-25                   | Harvest-1.12-1.2.8-25.jar                          | None                                     |     |       | hatchery                          | 2.2.2                           | hatchery-1.12.2-2.2.2.jar                          | None                                     |     |       | headcrumbs                        | 2.0.4                           | Headcrumbs-1.12.2-2.0.5.17.jar                     | None                                     |     |       | heroesexpansion                   | 1.12.2-1.3.5                    | HeroesExpansion-1.12.2-1.3.5.jar                   | None                                     |     |       | hopperducts                       | 1.5                             | hopperducts-mc1.12-1.5.jar                         | None                                     |     |       | waila                             | 1.8.26                          | Hwyla-1.8.26-B41_1.12.2.jar                        | None                                     |     |       | hydrogel                          | 1.1.0                           | HydroGel-1.12.2-1.1.0.jar                          | None                                     |     |       | icbmclassic                       | 6.0.0                           | ICBM-classic-1.12.2-6.0.0-preview.1.jar            | None                                     |     |       | icbmcc                            | 1.0.2                           | ICBM-classic-cc-addon-1.12.2-1.0.2.jar             | None                                     |     |       | ichunutil                         | 7.2.2                           | iChunUtil-1.12.2-7.2.2.jar                         | None                                     |     |       | igi|bloodmagicintegration         | 1.2                             | IGI-BloodMagic-1.2.jar                             | None                                     |     |       | igi|deepresonanceintegration      | 1.1                             | IGI-DeepResonance-1.1.jar                          | None                                     |     |       | igi|rftoolsintegration            | 1.2                             | IGI-RFTools-1.2.jar                                | None                                     |     |       | igi|thaumcraft                    | 1.0a                            | IGI-Thaumcraft-1.0a.jar                            | None                                     |     |       | igisereneseasons                  | 1.0.0.1                         | igisereneseasons-1.0.0.1.jar                       | None                                     |     |       | immersivepetroleum                | 1.1.10                          | immersivepetroleum-1.12.2-1.1.10.jar               | None                                     |     |       | industrialupgrade                 | 3.1.3                           | IndustrialUpgrade-1.12.2-3.1.3.jar                 | None                                     |     |       | ingameinfoxml                     | 2.8.2.94                        | InGameInfoXML-1.12.2-2.8.2.94-universal.jar        | None                                     |     |       | initialinventory                  | 2.0.2                           | InitialInventory-3.0.0.jar                         | None                                     |     |       | integrateddynamics                | 1.1.11                          | IntegratedDynamics-1.12.2-1.1.11.jar               | None                                     |     |       | integrateddynamicscompat          | 1.0.0                           | IntegratedDynamics-1.12.2-1.1.11.jar               | None                                     |     |       | integratedtunnels                 | 1.6.14                          | IntegratedTunnels-1.12.2-1.6.14.jar                | None                                     |     |       | integratedtunnelscompat           | 1.0.0                           | IntegratedTunnels-1.12.2-1.6.14.jar                | None                                     |     |       | inventorypets                     | 2.0.15                          | inventorypets-1.12-2.0.15.jar                      | None                                     |     |       | inventorysorter                   | 1.13.3+57                       | inventorysorter-1.12.2-1.13.3+57.jar               | None                                     |     |       | ironchest                         | 1.12.2-7.0.67.844               | ironchest-1.12.2-7.0.72.847.jar                    | None                                     |     |       | ironjetpacks                      | 1.1.0                           | IronJetpacks-1.12-2-1.1.0.jar                      | None                                     |     |       | ironman                           | Beta-1.12.2-1.2.6               | IronMan-1.12.2-Beta-1.12.2-1.2.6.jar               | None                                     |     |       | itemfilters                       | 1.0.4.2                         | ItemFilters-1.0.4.2.jar                            | None                                     |     |       | jeiutilities                      | 0.2.12                          | JEI-Utilities-1.12.2-0.2.12.jar                    | None                                     |     |       | jei                               | 4.16.1.301                      | jei_1.12.2-4.16.1.301.jar                          | None                                     |     |       | jeiintegration                    | 1.6.0                           | jeiintegration_1.12.2-1.6.0.jar                    | None                                     |     |       | journeymap                        | 1.12.2-5.7.1p2                  | journeymap-1.12.2-5.7.1p2.jar                      | None                                     |     |       | kleeslabs                         | 5.4.12                          | KleeSlabs_1.12.2-5.4.12.jar                        | None                                     |     |       | librarianliblate                  | 4.22                            | librarianlib-1.12.2-4.22.jar                       | None                                     |     |       | librarianlib                      | 4.22                            | librarianlib-1.12.2-4.22.jar                       | None                                     |     |       | literalascension                  | 1.12.2-1.0.2.2                  | literalascension-1.12.2-2.0.0.0.jar                | None                                     |     |       | logisticspipes                    | 0.10.3.114                      | logisticspipes-0.10.3.114.jar                      | None                                     |     |       | longfallboots                     | 1.2.1a                          | longfallboots-1.2.1b.jar                           | None                                     |     |       | lootbags                          | 2.5.8.5                         | LootBags-1.12.2-2.5.8.5.jar                        | None                                     |     |       | lost_aether                       | 1.0.2                           | lost-aether-content-1.12.2-1.0.2.jar               | None                                     |     |       | lostinfinity                      | 1.15.4                          | lostinfinity-1.16.0.jar                            | None                                     |     |       | luckynuke                         | 1.0.0                           | Lucky (1).jar                                      | None                                     |     |       | lucraftcore                       | 1.12.2-2.4.16                   | LucraftCore-1.12.2-2.4.17.jar                      | None                                     |     |       | lucraftcoreidextender             | 1.0.1                           | LucraftCoreIDExtender.jar                          | None                                     |     |       | lunatriuscore                     | 1.2.0.42                        | LunatriusCore-1.12.2-1.2.0.42-universal.jar        | None                                     |     |       | magiccraftadventure               | v1.10                           | MagicCraftAdventure v1.10.jar                      | None                                     |     |       | malisiscore                       | 1.12.2-6.5.1-SNAPSHOT           | malisiscore-1.12.2-6.5.1.jar                       | None                                     |     |       | malisisdoors                      | 1.12.2-7.3.0                    | malisisdoors-1.12.2-7.3.0.jar                      | None                                     |     |       | mantle                            | 1.12-1.3.3.55                   | Mantle-1.12-1.3.3.55.jar                           | None                                     |     |       | matc                              | 1.0.1-hotfix                    | matc-1.0.1-hotfix.jar                              | None                                     |     |       | mcef                              | 1.11                            | mcef-1.12.2-1.11.jar                               | None                                     |     |       | mcjtylib_ng                       | 3.5.4                           | mcjtylib-1.12-3.5.4.jar                            | None                                     |     |       | mclib                             | 2.4.2                           | mclib-2.4.2-1.12.2.jar                             | None                                     |     |       | mcmultipart                       | 2.5.3                           | MCMultiPart-2.5.3.jar                              | None                                     |     |       | mekanism                          | 1.12.2-9.8.3.390                | Mekanism-1.12.2-9.8.3.390.jar                      | None                                     |     |       | mekanismgenerators                | 1.12.2-9.8.3.390                | MekanismGenerators-1.12.2-9.8.3.390.jar            | None                                     |     |       | mekanismtools                     | 1.12.2-9.8.3.390                | MekanismTools-1.12.2-9.8.3.390.jar                 | None                                     |     |       | mercurius                         | 1.0.6                           | Mercurius-1.12.2.jar                               | None                                     |     |       | metamorph                         | 1.3.1                           | metamorph-1.3.1-1.12.2.jar                         | None                                     |     |       | metamorphmax                      | 0.13 - MC 1.12.2                | metamorphmax-0.13.jar                              | None                                     |     |       | minemenu                          | 1.6.11                          | MineMenu-1.12.2-1.6.11-universal.jar               | None                                     |     |       | minicoal                          | 1.0                             | minicoal-1.12.2-1.0.jar                            | None                                     |     |       | missing_pieces                    | 4.3.0                           | missing_pieces-1.12.2-4.3.0.jar                    | None                                     |     |       | moarsigns                         | 6.0.0.11                        | MoarSigns-1.12.2-6.0.0.11.jar                      | None                                     |     |       | moartinkers                       | 0.6.0                           | moartinkers-0.6.0.jar                              | None                                     |     |       | mob_grinding_utils                | 0.3.13                          | MobGrindingUtils-0.3.13.jar                        | None                                     |     |       | modnametooltip                    | 1.10.1                          | modnametooltip_1.12.2-1.10.1.jar                   | None                                     |     |       | modtweaker                        | 4.0.19                          | modtweaker-4.0.20.11.jar                           | None                                     |     |       | moreavaritia                      | 3.5                             | moreavaritia-mc1.12.2-v1.5.jar                     | None                                     |     |       | morechickens                      | 3.1.0                           | morechickens-1.12.2-3.1.0.jar                      | None                                     |     |       | shear                             | 1.1.2                           | MoreShearables1.3.1-1.12.2.jar                     | None                                     |     |       | morpheus                          | 1.12.2-3.5.106                  | Morpheus-1.12.2-3.5.106.jar                        | None                                     |     |       | mousetweaks                       | 2.10                            | MouseTweaks-2.10-mc1.12.2.jar                      | None                                     |     |       | mowziesmobs                       | 1.5.8                           | mowziesmobs-1.5.8.jar                              | None                                     |     |       | mpbasic                           | 1.4.7                           | mpbasic-1.12.2-1.4.11.jar                          | None                                     |     |       | mputils                           | 1.5.6                           | MPUtils-1.12.2-1.5.7.jar                           | None                                     |     |       | mtlib                             | 3.0.7                           | MTLib-3.0.7.jar                                    | None                                     |     |       | mysticalagradditions              | 1.3.2                           | MysticalAgradditions-1.12.2-1.3.2.jar              | None                                     |     |       | mysticalagriculture               | 1.7.5                           | MysticalAgriculture-1.12.2-1.7.5.jar               | None                                     |     |       | mysticallib                       | 1.12.2-1.13.0                   | mysticallib-1.12.2-1.13.0.jar                      | None                                     |     |       | natura                            | 1.12.2-4.3.2.69                 | natura-1.12.2-4.3.2.69.jar                         | None                                     |     |       | neat                              | 1.4-17                          | Neat 1.4-17.jar                                    | None                                     |     |       | nice                              | 0.4.0                           | nice-1.12-0.4.0.jar                                | None                                     |     |       | nei                               | 2.4.3                           | NotEnoughItems-1.12.2-2.4.3.245-universal.jar      | None                                     |     |       | notenoughwands                    | 1.8.1                           | notenoughwands-1.12-1.8.1.jar                      | None                                     |     |       | hbm                               | NTM-Extended-1.12.2-2.0.2       | NTM-Extended-1.12.2-2.0.2.jar                      | None                                     |     |       | openablewindows                   | 0.0.1                           | openablewindows-1.0.jar                            | None                                     |     |       | opencomputers                     | 1.8.5                           | OpenComputers-MC1.12.2-1.8.5+179e1c3.jar           | None                                     |     |       | eternalsoap.icbm.opencomputers    | 1.0                             | OpenComputersICBMAddon-1.3.jar                     | None                                     |     |       | oreexcavation                     | 1.4.150                         | OreExcavation-1.4.150.jar                          | None                                     |     |       | orespawn                          | 3.3.1                           | OreSpawn-1.12-3.3.1.179.jar                        | None                                     |     |       | packingtape                       | 0.7.6                           | PackingTape-1.12.2-0.7.6.jar                       | None                                     |     |       | harvestcraft                      | 1.12.2zb                        | Pam's HarvestCraft 1.12.2zg.jar                    | None                                     |     |       | pamsimpleharvest                  | 2.0.0                           | pamsimpleharvest-2.0.0.jar                         | None                                     |     |       | patchouli                         | 1.0-23.6                        | Patchouli-1.0-23.6.jar                             | None                                     |     |       | placebo                           | 1.6.0                           | Placebo-1.12.2-1.6.1.jar                           | None                                     |     |       | platforms                         | 1.4.6                           | platforms-1.12.0-1.4.6.jar                         | None                                     |     |       | portalgun                         | 7.1.0                           | PortalGun-1.12.2-7.1.0.jar                         | None                                     |     |       | powerutils                        | 1.5.3                           | Power+Utilities.jar                                | None                                     |     |       | projecte                          | 1.12.2-PE1.4.1                  | ProjectE-1.12.2-PE1.4.1.jar                        | None                                     |     |       | projectex                         | 1.2.0.40                        | ProjectEX-1.2.0.40.jar                             | None                                     |     |       | projectintelligence               | 1.0.9                           | ProjectIntelligence-1.12.2-1.0.9.28-universal.jar  | None                                     |     |       | psi                               | r1.1-78                         | Psi-r1.1-78.2.jar                                  | None                                     |     |       | ptrmodellib                       | 1.0.5                           | PTRLib-1.0.5.jar                                   | None                                     |     |       | pymtech                           | 1.12.2-1.0.2                    | PymTech-1.12.2-1.0.2.jar                           | None                                     |     |       | quantum_generators                | 1.3.1                           | Quantum_Generators.jar                             | None                                     |     |       | quantumflux                       | 2.0.18                          | quantumflux-1.12.2-2.0.18.jar                      | None                                     |     |       | quantumstorage                    | 4.7.0                           | QuantumStorage-1.12-4.7.0.jar                      | None                                     |     |       | questbook                         | 3.1.1-1.12                      | questbook-3.1.1-1.12.jar                           | None                                     |     |       | randomthings                      | 4.2.7.4                         | RandomThings-MC1.12.2-4.2.7.4.jar                  | None                                     |     |       | rangedpumps                       | 0.5                             | rangedpumps-0.5.jar                                | None                                     |     |       | reborncore                        | 3.19.5                          | RebornCore-1.12.2-3.19.5-universal.jar             | None                                     |     |       | rebornstorage                     | 1.0.0                           | RebornStorage-1.12.2-3.3.4.1.jar                   | None                                     |     |       | reccomplex                        | 1.4.8.5                         | RecurrentComplex-1.4.8.5.jar                       | None                                     |     |       | redstoneflux                      | 2.1.1                           | RedstoneFlux-1.12-2.1.1.1-universal.jar            | None                                     |     |       | redstonepaste                     | 1.7.5                           | redstonepaste-mc1.12-1.7.5.jar                     | None                                     |     |       | refined_avaritia                  | 2.6                             | refined_avaritia-1.12.2-2.6.jar                    | None                                     |     |       | refinedstorage                    | 1.6.16                          | refinedstorage-1.6.16.jar                          | None                                     |     |       | refinedstorageaddons              | 0.4.5                           | refinedstorageaddons-0.4.5.jar                     | None                                     |     |       | refinedstoragerequestify          | ${version}                      | refinedstoragerequestify-1.12.2-1.0.2-3.jar        | None                                     |     |       | regeneration                      | 3.0.3                           | Regeneration-3.0.3.jar                             | None                                     |     |       | resourceloader                    | 1.5.3                           | ResourceLoader-MC1.12.1-1.5.3.jar                  | None                                     |     |       | rftdimtweak                       | 1.1                             | RFTDimTweak-1.12.2-1.1.jar                         | None                                     |     |       | rftools                           | 7.73                            | rftools-1.12-7.73.jar                              | None                                     |     |       | rftoolscontrol                    | 2.0.2                           | rftoolsctrl-1.12-2.0.2.jar                         | None                                     |     |       | rftoolsdim                        | 5.71                            | rftoolsdim-1.12-5.71.jar                           | None                                     |     |       | rftoolspower                      | 1.2.0                           | rftoolspower-1.12-1.2.0.jar                        | None                                     |     |       | rftpwroc                          | 0.1                             | rftpwr_oc-0.2.jar                                  | None                                     |     |       | roots                             | 1.12.2-3.1.9.2                  | Roots-1.12.2-3.1.9.2.jar                           | None                                     |     |       | rslargepatterns                   | 1.12.2-1.0.0.0                  | RSLargePatterns-1.12.2-1.0.0.1.jar                 | None                                     |     |       | woodenshears                      | @MAJOR@.@MINOR@.@REVIS@.@BUILD@ | SBM-WoodenShears-1.12-0.0.1b8.jar                  | None                                     |     |       | scanner                           | 1.6.12                          | scanner-1.6.12.jar                                 | None                                     |     |       | secureenderstorage                | 1.12.2-1.2.0                    | SecureEnderStorage-1.12.2-1.2.0.jar                | None                                     |     |       | sereneseasons                     | 1.2.18                          | SereneSeasons-1.12.2-1.2.18-universal.jar          | None                                     |     |       | shadowmc                          | 3.8.0                           | ShadowMC-1.12-3.8.0.jar                            | None                                     |     |       | shearmadness                      | 1.12.2                          | shearmadness-1.12.2-1.7.2.4.jar                    | None                                     |     |       | simple-rpc                        | 1.0                             | simple-rpc-1.12.2-3.1.1.jar                        | None                                     |     |       | simplecorn                        | 2.5.12                          | SimpleCorn1.12-2.5.12.jar                          | None                                     |     |       | simplegenerators                  | 1.12.2-2.0.20.2                 | simplegenerators-1.12.2-2.0.20.2.jar               | None                                     |     |       | simplyquarries                    | 1.6.2                           | Simply+Quarries.jar                                | None                                     |     |       | simplyjetpacks                    | 1.12.2-2.2.20.0                 | SimplyJetpacks2-1.12.2-2.2.20.0.jar                | None                                     |     |       | snad                              | 1.12.1-1.7.09.16a               | Snad-1.12.1-1.7.09.16a.jar                         | None                                     |     |       | solarflux                         | 12.4.11                         | SolarFluxReborn-1.12.2-12.4.11.jar                 | None                                     |     |       | sonarcore                         | 5.0.19                          | sonarcore-1.12.2-5.0.19-20.jar                     | None                                     |     |       | speedsterheroes                   | 1.12.2-2.2.1                    | SpeedsterHeroes-1.12.2-2.2.1.jar                   | None                                     |     |       | statues                           | 0.8.10                          | statues-1.12.2-0.8.11.jar                          | None                                     |     |       | stellarfluidconduits              | 1.12.2-1.0.0                    | stellarfluidconduit-1.12.2-1.0.3.jar               | None                                     |     |       | stevescarts                       | 2.4.32.137                      | StevesCarts-1.12.2-2.4.32.137.jar                  | None                                     |     |       | storagedrawers                    | 5.5.0                           | StorageDrawers-1.12.2-5.5.0.jar                    | None                                     |     |       | tabula                            | 7.1.0                           | Tabula-1.12.2-7.1.0.jar                            | None                                     |     |       | taiga                             | 1.12.2-1.3.3                    | taiga-1.12.2-1.3.4.jar                             | None                                     |     |       | tardis                            | 0.1.4A                          | tardis-0.1.4A.jar                                  | None                                     |     |       | tconstruct                        | 1.12.2-2.13.0.183               | TConstruct-1.12.2-2.13.0.183.jar                   | None                                     |     |       | thaumcraft                        | 6.1.BETA26                      | Thaumcraft-1.12.2-6.1.BETA26.jar                   | None                                     |     |       | thaumicjei                        | 1.6.0                           | ThaumicJEI-1.12.2-1.6.0-27.jar                     | None                                     |     |       | beneath                           | 1.7.1                           | The Beneath-1.12.2-1.7.1.jar                       | None                                     |     |       | the-fifth-world                   | 0.5                             | the-fifth-world-0.5.1.jar                          | None                                     |     |       | tabulathreecoreexporter           | 1.12.2-1.0.0                    | ThreeCoreModelExporter-1.12.2-1.0.0.jar            | None                                     |     |       | tinkersaddons                     | 1.0.7                           | Tinkers' Addons-1.12.1-1.0.7.jar                   | None                                     |     |       | tinkers_reforged                  | 1.5.6                           | tinkers_reforged-1.5.6.jar                         | None                                     |     |       | tinkers_reforged_preload          | 1.5.6                           | tinkers_reforged-1.5.6.jar                         | None                                     |     |       | tinkersaether                     | 1.4.1                           | tinkersaether-1.4.1.jar                            | None                                     |     |       | tcomplement                       | 1.12.2-0.4.3                    | TinkersComplement-1.12.2-0.4.3.jar                 | None                                     |     |       | tinkersjei                        | 1.2                             | tinkersjei-1.2.jar                                 | None                                     |     |       | tinkersoc                         | 0.6                             | tinkersoc-0.6.jar                                  | None                                     |     |       | tinkertoolleveling                | 1.12.2-1.1.0.DEV.b23e769        | TinkerToolLeveling-1.12.2-1.1.0.jar                | None                                     |     |       | tp                                | 3.2.34                          | tinyprogressions-1.12.2-3.3.34-Release.jar         | None                                     |     |       | tnt_craft                         | 1.0.0                           | tnt-craft-1.12.2-V-1.1.0.jar                       | None                                     |     |       | tnt_utilities                     | 1.2.3                           | tnt_utilities-mc1.12-1.2.3.jar                     | None                                     |     |       | torchmaster                       | 1.8.5.0                         | torchmaster_1.12.2-1.8.5.0.jar                     | None                                     |     |       | translocators                     | 2.5.2.81                        | Translocators-1.12.2-2.5.2.81-universal.jar        | None                                     |     |       | ts2k16                            | 1.2.10                          | TS2K16-1.2.10.jar                                  | None                                     |     |       | twitchcrumbs                      | 3.0.4                           | Twitchcrumbs_1.12.2-3.0.4.jar                      | None                                     |     |       | unidict                           | 1.12.2-3.0.10                   | UniDict-1.12.2-3.0.10.jar                          | None                                     |     |       | universalmodifiers                | 1.12.2-1.0.16.1                 | valkyrielib-1.12.2-2.0.20.1.jar                    | None                                     |     |       | valkyrielib                       | 1.12.2-2.0.20.1                 | valkyrielib-1.12.2-2.0.20.1.jar                    | None                                     |     |       | vehicle                           | 0.44.1                          | vehicle-mod-0.44.1-1.12.2.jar                      | None                                     |     |       | viaforge                          | 3.6.0                           | viaforge-mc1122-3.6.0.jar                          | None                                     |     |       | voicechat                         | 1.12.2-2.5.13                   | voicechat-forge-1.12.2-2.5.13.jar                  | None                                     |     |       | waddles                           | 0.6.0                           | Waddles-1.12.2-0.6.0.jar                           | None                                     |     |       | wanionlib                         | 1.12.2-2.91                     | WanionLib-1.12.2-2.91.jar                          | None                                     |     |       | warpbook                          | 1.12.2-3.3.4                    | Warpbook-1.12.2-3.3.4.jar                          | None                                     |     |       | wawla                             | 2.6.275                         | Wawla-1.12.2-2.6.275.jar                           | None                                     |     |       | waystones                         | 4.1.0                           | Waystones_1.12.2-4.1.0.jar                         | None                                     |     |       | webdisplays                       | 1.1                             | webdisplaysremastered-1.12.2-1.2.jar               | None                                     |     |       | wintertagva                       | 1.12.2-1.0.0                    | WinterTAGVA-1.12.2-1.0.0.jar                       | None                                     |     |       | withercrumbs                      | @version@                       | witherCrumbs-1.12.2-0.11.jar                       | None                                     |     |       | zerocore                          | 1.12.2-0.1.2.9                  | zerocore-1.12.2-0.1.2.9.jar                        | None                                     |     |       | orbis-lib                         | 0.2.0                           | orbis-lib-1.12.2-0.2.0+build411.jar                | None                                     |     |       | phosphor-lighting                 | 1.12.2-0.2.6                    | phosphor-1.12.2-0.2.6+build50.jar                  | None                                     |     |       | immersiveengineering              | 0.12-98                         | ImmersiveEngineering-0.12-98.jar                   | None                                     |     |       | k9                                | 1.12.2-1.3.3.0                  | k9-1.12.2-1.3.3.0.jar                              | None                                     |     |       | llibrary                          | 1.7.20                          | llibrary-1.7.20-1.12.2.jar                         | None                                     |     |       | shetiphiancore                    | 3.5.9                           | shetiphiancore-1.12.0-3.5.9.jar                    | None                                     |     |       | structurize                       | 1.12.2-0.10.277-RELEASE         | structurize-1.12.2-0.10.277-RELEASE.jar            | None                                     |     |       | weeping-angels                    | 1.12.2-46                       | weeping-angels-46.jar                              | None                                     |     Loaded coremods (and transformers):  IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   blusunrize.immersiveengineering.common.asm.IEClassTransformer LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar)   com.teamwizardry.librarianlib.asm.LibLibTransformer MixinLoader (viaforge-mc1122-3.6.0.jar)    McLib core mod (mclib-2.4.2-1.12.2.jar)   mchorse.mclib.core.McLibCMClassTransformer EFFLL (LiteLoader ObjectHolder fix) (ExtraFoamForLiteLoader-1.0.0.jar)   pl.asie.extrafoamforliteloader.EFFLLTransformer MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   mekanism.coremod.KeybindingMigrationHelper LogisticsPipesCoreLoader (logisticspipes-0.10.3.114.jar)   logisticspipes.asm.LogisticsClassTransformer AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   squeek.applecore.asm.TransformerModuleHandler BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar)   me.superckl.biometweakercore.BiomeTweakerASMTransformer ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)   com.mrcrayfish.obfuscate.asm.ObfuscateTransformer Regeneration (Regeneration-3.0.3.jar)   me.suff.mc.regen.asm.RegenClassTransformer UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   wanion.unidict.core.UniDictCoreModTransformer ReflectorsPlugin (EnderStorage-1.12.2-2.5.0.jar)   codechicken.enderstorage.reflection.ReflectorsPlugin EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar)    Controllable (controllable-0.11.2-1.12.2.jar)    craftfallessentials (CraftfallEssentials-1.12.2-1.2.6.jar)   com.hydrosimp.craftfallessentials.core.CEClassTransformer SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.9.jar)    LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)   lumien.resourceloader.asm.ClassTransformer MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)    pymtech (PymTech-1.12.2-1.0.2.jar)   lucraft.mods.pymtech.core.PymTechClassTransformer IvToolkit (IvToolkit-1.3.3-1.12.jar)    JeiUtilitiesLoadingPlugin (JEI-Utilities-1.12.2-0.2.12.jar)   com.github.vfyjxf.jeiutilities.asm.JeiUtilitiesClassTransformer LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   lumien.randomthings.asm.ClassTransformer SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar)   sereneseasons.asm.transformer.EntityRendererTransformer   sereneseasons.asm.transformer.WorldTransformer Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar)   pl.asie.foamfix.coremod.FoamFixTransformer FTBUltimineASM (ftb-ultimine-1202.3.5.jar)    ForgelinPlugin (Forgelin-1.8.4.jar)    Backpacked (backpacked-1.4.3-1.12.2.jar)   com.mrcrayfish.backpacked.asm.BackpackedTransformer ForgelinPlugin (Forgelin-Continuous-1.9.23.0.jar)    HCASM (HammerLib-1.12.2-12.2.50.jar)   com.zeitheron.hammercore.asm.HammerCoreTransformer LucraftCoreExtendedID (LucraftCoreIDExtender.jar)    NWRTweak (redstonepaste-mc1.12-1.7.5.jar)   net.fybertech.nwr.NWRTransformer CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   team.chisel.ctm.client.asm.CTMTransformer LucraftCoreCoreMod (LucraftCore-1.12.2-2.4.17.jar)   lucraft.mods.lucraftcore.core.LCTransformer EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   com.enderio.core.common.transform.EnderCoreTransformer   com.enderio.core.common.transform.SimpleMixinPatcher TransformerLoader (OpenComputers-MC1.12.2-1.8.5+179e1c3.jar)   li.cil.oc.common.asm.ClassTransformer llibrary (llibrary-core-1.0.11-1.12.2.jar)   net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer   net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar)   shetiphian.asm.ClassTransformer PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50.jar)    MekanismTweaks (mekanismtweaks-1.1.jar)    ShutdownPatcher (mcef-1.12.2-1.11-coremod.jar)   net.montoyo.mcef.coremod.ShutdownPatcher TNTUtilities Core (tnt_utilities-mc1.12-1.2.3.jar)   ljfa.tntutils.asm.ExplosionTransformer     GL info: ' Vendor: 'Intel' Version: '4.6.0 - Build 32.0.101.5428' Renderer: 'Intel(R) Iris(R) Xe Graphics'     Launched Version: forge-14.23.5.2860     LWJGL: 2.9.4     OpenGL: Intel(R) Iris(R) Xe Graphics GL version 4.6.0 - Build 32.0.101.5428, Intel     GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported.     Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'fml,forge'     Type: Client (map_client.txt)     Resource Packs:      Current Language: English (US)     Profiler Position: N/A (disabled)     CPU: 8x 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz
    • Advice for the future: I made functions to create recipes more easily; they generate names for the recipes based on the ingredients and the result. 
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.