TFC:TFF Drying Racks - Food Drying Modification
This modification is a fork (branch) of the original TFC Drying Racks addon by Lumintorious, which was initially created for use in the TerrafirmaCraft: The Final Frontier modpack. Additionally, it is supported in other projects such as TerrafirmaCraft: Reditus 2.
Key Changes and Features
As a result of the development work, the following important improvements have been made:
- Removed unused resources and unnecessary files
- Fixed critical errors that were causing game crashes
- Added support for all types of wood and metals present in the TerraFirmaCraft registry
- Drying rack recipes are disabled by default, and the racks themselves can no longer be crafted manually
Important Compatibility Note
Although the mod could theoretically work with the standard version of TerraFirmaCraft for 1.12.2, it's important to understand that the developers' main focus is specifically on the TFC:TFF version. All changes are made exclusively in the interests of this particular project.
Note: Without additional configuration, the modification does not function - for its full operation, the use of the CraftTweaker system is required.
CraftTweaker Integration
To configure drying processes, use the following commands:
// Connecting the required module
import mods.tfcdryingrack.Rack;
// Adding a new drying recipe
Rack.addRecipe(String registryName, IIngredient input, ItemStack output, int hours, float chance);
// Removing a recipe by name
Rack.removeRecipe(String registryName);
// Removing a recipe by input ingredient
Rack.removeRecipe(IIngredient input);
This functionality allows complete customization of the food drying process to suit the needs of your specific gaming project.