Jump to content

[1.7.10] Delete all MINECRAFT recipe's


arie2002

Recommended Posts

So, I'm creating a mod that makes minecraft a bit more realistic. To do that I am removing all vanilla minecraft recipe's with this piece of code:

CraftingManager.getInstance().getRecipeList().clear();

But there is a slight problem: this code also removes modded recipe's... Although this mod is not supposed to be played with other mods, it would still be nice for people who really want to play with other mods.

 

So: is there a way to remove vanilla minecraft recipe's only?

I never post on the forums, but when I do, I have no clue how to do a certain thing.

Link to comment
Share on other sites

1st: remove recipes in per-init

if doesn't nelp:

you have something like

@Mod(modid="sscp", name="SSCP content editor", version="0.1")

after version add:

dependencies="required-before:minecraft-forge"

that means that when fml will go trwow classes with @Mod will read dependencies. It's how core-mods works.

also there is:

before:

will load before loading the mod or load normally when there is no this mod

required-before:

will load before and only if mod exists

after:

will load after loading the mod or load normally when there is no this mod

required-after:

will load after and only if mod exists

after them write modid, Example: sscp-core

the code you obtained may look like this:

@Mod(modid="sscp", name="SSCP content editor", version="0.1", dependencies="required-before:minecraft-forge")

or also you can try with

@Mod(modid="sscp", name="SSCP content editor", version="0.1", dependencies="required-before:minecraft")

But this would probably crash minecraft

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



×
×
  • Create New...

Important Information

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