Content: Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Background: Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Pattern: Blank Waves Notes Sharp Wood Rockface Leather Honey Vertical Triangles
Welcome to TerraFirmaCraft Forums

Register now to gain access to all of our features. Once registered and logged in, you will be able to contribute to this site by submitting your own content or replying to existing content. You'll be able to customize your profile, receive reputation points as a reward for submitting content, while also communicating with other members via your own private inbox, plus much more! This message will be removed once you have signed in.

  • Announcements

    • Dries007

      ATTENTION Forum Database Breach   03/04/2019

      There has been a breach of our database. Please make sure you change your password (use a password manager, like Lastpass).
      If you used this password anywhere else, change that too! The passwords themselves are stored hashed, but may old accounts still had old, insecure (by today's standards) hashes from back when they where created. This means they can be "cracked" more easily. Other leaked information includes: email, IP, account name.
      I'm trying my best to find out more and keep everyone up to date. Discord (http://invite.gg/TerraFirmaCraft) is the best option for up to date news and questions. I'm sorry for this, but the damage has been done. All I can do is try to make sure it doesn't happen again.
    • Claycorp

      This forum is now READ ONLY!   01/20/2020

      As of this post and forever into the future this forum has been put into READ ONLY MODE. There will be no new posts! A replacement is coming SoonTM . If you wish to stay up-to-date on whats going on or post your content. Please use the Discord or Sub-Reddit until the new forums are running.

      Any questions or comments can be directed to Claycorp on either platform.

3TUSK

Members
  • Content count

    3
  • Joined

  • Last visited

Community Reputation

0 Neutral

About 3TUSK

  • Rank
    Freshly Spawned
  1. @Bunsan I suggest put things here. This module is still new born. Edit 1: Also, it should be better that I add more javadoc in my code, isn't it? Edit 2: As for that removeWeld(IItemStack) doesn't work, I found the reason and fixed it. There are still lots of work to do, and I hope the next PR is coming soon...
  2. Actually I also want to talk about the origin why I made this PR, since the reason is related to modpack creating. Last October, I started working on a modpack which aims to integrate TFCraft and GregTech together, as well as some other tech mods like AE2 and Railcraft. OreDict has been supported, but due to TFCraft, GT's tech-tree broken, which cannot be fixed by simply add regular 3x3 crafting recipes. After carefully considering about it, I believe that provide MineTweaker support for TFCraft will be the best solution to solve this problem. In another word, let GT tech-tree adjust TFCraft. It took me a lot of time studying and working on that, but now we have somewhat progress. Just share some story (welcome to provide idea(s) about modpack)
  3. Well, here is 3TUSK. I received the email from #6, and then I read the whole thread carefully. First of all, appreciation to everyone who gave me comments! I want to talk about what's going on currently. Now I am working on adding anvil plan and knapping support, as well as fix things mentioned in feedback above. Now there is a check in mods.tfcraft.Kiln.add if (toStack(input).getItem() instanceof ItemPotteryBase) MineTweakerAPI.apply(new AddRecipe(new KilnRecipe(toStack(input), lv, toStack(output)))); else LogHelper.print("Fail to add new recipe, " + input.getDisplayName() + " is not a pottery stuff!");also added more choices for anvil recipe adder. Beside, I have some questions: 1.Can TFCraft API provide some methods to remove certain recipe (e.g. quern, barrel and anvil) in the future? 2.There are some constructor method in AnvilRecipe which has no output parameter. What are the purpose for them?