Jump to content

ID Conflict unsolvable


biggles2206

Recommended Posts

When ever I try and run my minecraft in my eclipse environment, i get this error in my log, is this something I need to worry about?

 

2013-07-21 18:11:42 [iNFO] [sTDOUT] CONFLICT @ 0 item slot already occupied by net.minecraft.item.ItemSpade@6b8efd7c while adding com.biggles2206.moreTools.items.itemIronStick@78a40f0e
2013-07-21 18:11:42 [iNFO] [fml.ItemTracker] The mod moreTools is overwriting existing item at 256 (net.minecraft.item.ItemSpade from Minecraft) with com.biggles2206.moreTools.items.itemIronStick
2013-07-21 18:11:42 [iNFO] [sTDOUT] CONFLICT @ 0 item slot already occupied by com.biggles2206.moreTools.items.itemIronStick@78a40f0e while adding com.biggles2206.moreTools.items.itemBedrockSword@5ad89e02
2013-07-21 18:11:42 [iNFO] [fml.ItemTracker] The mod moreTools is overwriting existing item at 256 (com.biggles2206.moreTools.items.itemIronStick from moreTools) with com.biggles2206.moreTools.items.itemBedrockSword

 

All the items listed above item id's start at the 3010 mark and increment by one.

Lets make forge modding the best it can be!

Link to comment
Share on other sites

Your itemIronStick as same id as itemIronSpade (which is from vanilla Minecraft).

Your itemBedrockSword as same id as your itemIronStick.

 

You should change this with the items constructors:

<pseudo code>

id1=11111;

id2=22222;

new itemIronStick(id1);

new itemBedrockSword(id2);

</pseudo code>

for example.

It is advised to use configuration file to give the user choice for the ids, but it is up to you.

Link to comment
Share on other sites

  • 2 weeks later...

I have a problem with conflicts as well. The problem is that the error doesn't really tell me much about what mod conflicts and the ID's doesn't exist in any config. :S

 

2827 item slot already occupied by net.minecraft.item.ItemBlock@68c83439 while adding net.minecraft.item.ItemSlab@2fdcbfed

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.