Changes

Summary

  1. Fix bucket cast recipes being initialized in the wrong module (#36) (details)
  2. Cleanup: switch from smurf naming to normal naming for module classes (details)
  3. Reorganize lang into modules rather than type (details)
  4. First commit of the high oven (details)
  5. Add missing scala to the melter JEI display and fix fire position (details)
  6. Add JEI support for the high oven (details)
  7. Add scorched bricks and blocks, make the high oven using them (details)
  8. Add custom casting blocks as catlysts for the JEI casting category (details)
  9. Add ducts and chutes to interact with the high oven controller's inventory (details)
  10. Fix not being able to swap stacks in the additive and fuel slots (details)
  11. When making steel from ores, consume items once per ore rather than per ingot (details)
  12. Added steel armor if steelworks is loaded (details)
  13. Add bacon as an alternative to porkchops in the pig iron recipe (details)
  14. Switch from string to resource location for registering TEs (details)
  15. Create ru_ru.lang (#37) (details)
  16. Update a couple keys in ru_ru.lamg I changed for 0.4.0 and resort according to modules (details)
  17. Fix parent item handler capability still being called (details)
  18. Add high oven, melter, and alloy tank info to the Materials and You book (details)
  19. Switch all temperature displays to use the Tinkers Construct utility (details)
  20. Desaturate scorched stone a bit and add the missing smelting recipe (details)
  21. Update mavens to use HTTPS (details)
  22. Update to lastest Mantle build and replace ModuleFileRepository with the Mantle class (details)
  23. Update the high oven's color in the book screenshot (details)
  24. Update Tinkers and Mantle versions, plus bump version for alpha build (details)
  25. Add config option for the heater temperature (details)
  26. Allow alloy tanks to be built using a tank instead of a heater (details)
  27. Add tooltip to mix recipe represenative items to clarify what is accepted (details)
  28. Fix the high oven sometimes losing heat on world load (details)
  29. Flip input and output on mix recipes to better match other TiC constructors (details)
  30. Fix not being able to fill the high oven using drains (details)
  31. Allow the high oven to make steam, which can be used as a late game smeltery fuel (details)
  32. Ensure things work properly when the Tinkers Construct smeltery module is disabled (details)
  33. Add some missing deprecated annotations (details)
  34. Fix ${version} in TinkersComplement not getting replaced in main class (details)
  35. Add particles to the alloy tank when active (details)
  36. Allow interacting with the melter as if it were a tank (details)
  37. Don't limit to bucket volume for filling the high oven from a bucket (details)
  38. Add iModifier, allows upgrading a chisel to support iChisel features (#30) (details)
  39. Fix chisel not gaining any XP from chiseling (#39) (details)
  40. Update dev chisel version to fix some bugs (details)
  41. Add Tool Leveling via CurseForge maven so I don't need to include it in libs (details)
  42. Update ru_ru.lang (#44) (details)
  43. Restore a Russian string that got lost in a commit (details)
  44. Release 0.4.1 (details)
  45. Update Mantle dependency (details)
  46. Fix mix recipes matching any fluid if there are additives (#46) (details)
  47. Fix too few reagents being consumed when an item with a large output is smelted (#47) (details)
  48. Expose addAdditive as a new public method in IMixRecipe (details)
  49. Add a config option to disable showing high oven fuels (default false) and improve book mention of fuels (details)
  50. Add a tooltip callback to the mix recipe to state fluid amounts are per second (details)
  51. Release 0.4.2 (details)
  52. Exposed private method of TCompRegistry (#49) (details)
  53. Fix mix recipes with fewer than 3 additives not working (details)
  54. First commit of chocolate (details)
  55. Prevent registering of certain Steelworks recipes when module disabled (#55) (details)
  56. Release 0.4.3 (details)
Commit fc3682b4ac19380a79f92ab9da1224d4bbe81e35 by KnightMiner
Fix bucket cast recipes being initialized in the wrong module (#36)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/ceramics/CeramicsPlugin.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/shared/ModuleCommons.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/ModuleMelter.java (diff)
Commit 5f00d8a7773d2c70b36538e40bcc72a5c168aa33 by KnightMiner
Cleanup: switch from smurf naming to normal naming for module classes

For consistancy with the rest of the package
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/MelterClientProxy.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/melter/MelterModule.java
The file was addedsrc/main/java/knightminer/tcomplement/shared/CommonsModule.java
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/ceramics/CeramicsPlugin.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/shared/CommonsClientProxy.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/armor/ArmorClientProxy.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/armor/items/ItemKnightSlimeArmor.java (diff)
The file was removedsrc/main/java/knightminer/tcomplement/melter/ModuleMelter.java
The file was removedsrc/main/java/knightminer/tcomplement/shared/ModuleCommons.java
The file was removedsrc/main/java/knightminer/tcomplement/armor/ModuleArmor.java
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/JEIPlugin.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/TinkersComplement.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/common/PulseBase.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/armor/ArmorModule.java
Commit 56f1b35ba0157f5632218e484339d7d5fc2a5da7 by KnightMiner
Reorganize lang into modules rather than type
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/lang/zh_cn.lang (diff)
Commit 23dc364e4a10d72f69b2489c7d2553db4db98d03 by KnightMiner
First commit of the high oven

TODO:
* Recipes and scorched blocks
* JEI support
* Steel armor
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksClientProxy.java
The file was modifiedsrc/main/java/knightminer/tcomplement/TinkersComplement.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/blockstates/materials.json (diff)
The file was addedsrc/main/java/knightminer/tcomplement/library/steelworks/HighOvenFuel.java
The file was modifiedsrc/main/java/knightminer/tcomplement/shared/CommonsModule.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksModule.java
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/client/GuiHighOven.java
The file was addedsrc/main/java/knightminer/tcomplement/library/steelworks/MixRecipe.java
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/JEIPlugin.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/common/Config.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/tank/HighOvenTank.java
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/charcoal_block.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/high_oven_controller.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/charcoal_block.png
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/inventory/ContainerHighOven.java
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/tileentity/TileHighOven.java
The file was modifiedsrc/main/java/knightminer/tcomplement/library/events/TCompRegisterEvent.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/charcoal.json
The file was modifiedsrc/main/resources/mcmod.info (diff)
The file was addedsrc/main/java/knightminer/tcomplement/shared/OredictModule.java
The file was addedsrc/main/resources/assets/tcomplement/textures/gui/high_oven.png
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/steel_block.json
The file was modifiedsrc/main/java/knightminer/tcomplement/library/TCompRegistry.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/inventory/ContainerHighOvenSideInventory.java
The file was addedsrc/main/resources/assets/tcomplement/textures/items/materials/steel_nugget.png
The file was addedsrc/main/java/knightminer/tcomplement/library/steelworks/IMixRecipe.java
The file was addedsrc/main/java/knightminer/tcomplement/library/steelworks/MixAdditive.java
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/blocks/BlockHighOvenController.java
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/steel_ingot_from_block.json
The file was addedsrc/main/resources/assets/tcomplement/textures/items/materials/steel_ingot.png
The file was modifiedsrc/main/java/knightminer/tcomplement/common/PulseBase.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/library/steelworks/EmptyMixRecipe.java
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/multiblock/MultiblockHighOven.java
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/steel_ingot_from_nugget.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/steel_nugget.json
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/client/GuiHighOvenSideInventory.java
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/items/ItemBlockStorage.java
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/blocks/BlockStorage.java
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/inventory/InventoryHighOven.java
The file was addedsrc/main/resources/assets/tcomplement/blockstates/storage.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/steel_block.png
Commit f688b048124550fd54c59c3aa7eea8631002c0db by KnightMiner
Add missing scala to the melter JEI display and fix fire position
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/melter/MeltingRecipeCategory.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/gui/jei/melter.png (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/melter/MeltingRecipeWrapper.java (diff)
Commit 36d07614a35517174a229540767cdec23625ce73 by KnightMiner
Add JEI support for the high oven
The file was addedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/mix/HighOvenMixWrapper.java
The file was addedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/mix/HighOvenMixGetter.java
The file was addedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/fuel/HighOvenFuelCategory.java
The file was addedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/mix/HighOvenMixCategory.java
The file was removedsrc/main/java/knightminer/tcomplement/plugin/jei/melter/MeltingRecipeChecker.java
The file was addedsrc/main/resources/assets/tcomplement/textures/gui/jei/high_oven.png
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/client/GuiHighOven.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/Util.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/MixRecipe.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/common/PulseBase.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/TCompRegistry.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/plugin/jei/MeltingRecipeGetter.java
The file was addedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/melting/HighOvenMeltingWrapper.java
The file was modifiedsrc/main/java/knightminer/tcomplement/common/Config.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/JEIPlugin.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/melting/HighOvenMeltingCategory.java
The file was addedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/fuel/HighOvenFuelWrapper.java
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was addedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/fuel/HighOvenFuelGetter.java
Commit 88ee8831e16ae440f4f3c9fedfae67d0625ed606 by KnightMiner
Add scorched bricks and blocks, make the high oven using them

Also includes scorched faucets, drains, channels, and casting blocks
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/bricks/creeper_bricks.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_stairs_tile.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_stairs_cobble.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/casting_basin_top.png
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_brick_triangle.png
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/chisel/ChiselPlugin.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/drain_front.png
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_channel.json
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/client/GuiHighOvenSideInventory.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/bricks/square_bricks.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/high_oven/channel.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_casting.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_brick_fancy.png
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_slab2.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/high_oven_io.json
The file was modifiedsrc/main/java/knightminer/tcomplement/shared/CommonsModule.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/slabs/creeperface_slab.json
The file was modifiedsrc/main/resources/assets/tcomplement/textures/gui/jei/high_oven.png (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/high_oven_inactive.png
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/slabs/paver_slab.json
The file was addedsrc/main/resources/assets/tcomplement/models/block/scorched_channel/side_in.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/casting_basin_bottom.png
The file was addedsrc/main/resources/assets/tcomplement/models/block/scorched_channel/side_lever.json
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/_constants.json (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/casting_basin_side.png
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/faucet.png
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/slabs/bricks_slab.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_faucet.json
The file was addedsrc/main/resources/assets/tcomplement/models/block/scorched_channel/center.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/high_oven/casting_table.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/stairs/tile_stairs.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_stairs_brick_fancy.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/stairs/square_bricks_stairs.json
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksModule.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/blockstates/materials.json (diff)
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/slabs/square_bricks_slab.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/scorched_bricks.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_stairs_brick_square.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/channel_out.png
The file was addedsrc/main/resources/assets/tcomplement/models/block/scorched_channel/side_out.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_brick_square.png
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/casting_table_bottom.png
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/bricks/road_bricks.json
The file was addedsrc/main/resources/assets/tcomplement/textures/items/materials/scorched_brick.png
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/slabs/cracked_bricks_slab.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/stairs/bricks_stairs.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/stairs/creeper_stairs.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/channel_in.png
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_stone.png
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/slabs/road_slab.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/high_oven_active.png
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/drain_back.png
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/slabs/small_bricks_slab.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_road.png
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/stairs/cobblestone_stairs.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_stairs_paver.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/stairs/paver_stairs.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_cobble.png
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/casting_table_side.png
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_creeper.png
The file was addedsrc/main/resources/assets/tcomplement/models/block/scorched_channel/center_out.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/bricks/small_bricks.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_stairs_brick_triangle.json
The file was addedsrc/main/resources/assets/tcomplement/models/block/scorched_channel/side.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/slabs/cobblestone_slab.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_slab.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/stairs/small_bricks_stairs.json
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/blocks/BlockScorchedSlab2.java
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_stairs_brick.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/scorched_brick_slab.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/stairs/triangle_bricks_stairs.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/high_oven/faucet.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/bricks/triangle_bricks.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_paver.png
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/bricks/paver_bricks.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/stairs/stone_stairs.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_stairs_brick_small.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/slabs/tile_slab.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/paver_bricks.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_stairs_brick_cracked.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_tile.png
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/bricks/bricks.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/slabs/triangle_bricks_slab.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_stairs_creeper.json
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/blocks/BlockScorchedSlab.java
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_block.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/slabs/stone_slab.json
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/multiblock/MultiblockHighOven.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/bricks/fancy_bricks.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_stairs_road.json
The file was modifiedsrc/main/resources/assets/tcomplement/blockstates/high_oven_controller.json (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/common/ClientProxy.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/models/block/scorched_channel/center_lever.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/high_oven/casting_basin.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/bricks/tile_bricks.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_brick_cracked.png
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksClientProxy.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/ceramics/CeramicsPluginClientProxy.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_brick.png
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/stairs/cracked_bricks_stairs.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/casting_table_top.png
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_brick_small.png
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/stairs/road_stairs.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/high_oven/high_oven_controller.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/stairs/fancy_bricks_stairs.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/high_oven/drain.json
The file was addedsrc/main/resources/assets/tcomplement/blockstates/scorched_stairs_stone.json
The file was addedsrc/main/resources/assets/tcomplement/models/item/scorched_channel.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/scorched/slabs/fancy_bricks_slab.json
Commit e74991bf7fd4c18924162c597a1a097b14ea8cd5 by KnightMiner
Add custom casting blocks as catlysts for the JEI casting category
The file was modifiedsrc/main/java/knightminer/tcomplement/common/PulseBase.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/JEIPlugin.java (diff)
Commit 95a13c739512d5ced8b585443c8a6f29e70aba1f by KnightMiner
Add ducts and chutes to interact with the high oven controller's inventory

Controller has at most one side available for item piping, which is a bit of a pain to reach. Plus, steelworks had this block
Main difference from steelworks is reliance on inventory slot filters for item insertion. Basically, instead of selecting one of the five input types, 4 input types have a strict filter and the 5 a separate block
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/blocks/BlockHighOvenIO.java
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/chute_front.png
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/tileentity/TileHighOven.java (diff)
The file was removedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/drain_back.png
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/high_oven/chute.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/steelworks/high_oven/duct.json
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/high_oven_io_back.png
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/blockstates/high_oven_io.json (diff)
The file was addedsrc/main/java/knightminer/tcomplement/steelworks/tileentity/TileHighOvenItemProxy.java
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksModule.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/duct_front.png
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksClientProxy.java (diff)
Commit 224e5cb7b2bb8b3c36786c168d9b0e8872d96564 by KnightMiner
Fix not being able to swap stacks in the additive and fuel slots
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/inventory/ContainerHighOven.java (diff)
Commit 38240d64ea3fb4104da1bdc145589311836f0f18 by KnightMiner
When making steel from ores, consume items once per ore rather than per ingot
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksModule.java (diff)
Commit 51082bd5b1043d7c5b1da8c7b6bf3e87f8b5afdd by KnightMiner
Added steel armor if steelworks is loaded

Also tweaks armor stats for the other two types and makes the recipes support oredict ingots
The file was addedsrc/main/resources/assets/tcomplement/recipes/armor/steel_boots.json
The file was addedsrc/main/resources/assets/tcomplement/textures/items/armor/steel_chestplate.png
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/armor/manyullyn_helmet.json (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/armor/manyullyn_chestplate.json (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/armor/knightslime_chestplate.json (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/armor/ArmorModule.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/armor/knightslime_boots.json (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/items/armor/steel_leggings.png
The file was addedsrc/main/resources/assets/tcomplement/models/item/steel_leggings.json
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/armor/manyullyn_leggings.json (diff)
The file was addedsrc/main/resources/assets/tcomplement/models/item/steel_chestplate.json
The file was addedsrc/main/resources/assets/tcomplement/textures/models/armor/steel_layer_1.png
The file was addedsrc/main/resources/assets/tcomplement/models/item/steel_helmet.json
The file was addedsrc/main/resources/assets/tcomplement/textures/items/armor/steel_boots.png
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/_constants.json (diff)
The file was addedsrc/main/resources/assets/tcomplement/recipes/armor/steel_leggings.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/armor/steel_chestplate.json
The file was addedsrc/main/resources/assets/tcomplement/recipes/armor/steel_helmet.json
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/armor/knightslime_helmet.json (diff)
The file was addedsrc/main/resources/assets/tcomplement/models/item/steel_boots.json
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/armor/knightslime_leggings.json (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/armor/ArmorClientProxy.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/armor/manyullyn_boots.json (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/items/armor/steel_helmet.png
The file was addedsrc/main/resources/assets/tcomplement/textures/models/armor/steel_layer_2.png
Commit a638c24329b32043a18be78e6440fbee1cefac75 by KnightMiner
Add bacon as an alternative to porkchops in the pig iron recipe

Because bacon!
The file was modifiedsrc/main/java/knightminer/tcomplement/common/ModIds.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksModule.java (diff)
Commit a406a6eacee48ceb53a70e42b76767cdb6a9fe51 by KnightMiner
Switch from string to resource location for registering TEs
The file was modifiedsrc/main/java/knightminer/tcomplement/common/PulseBase.java (diff)
Commit 7e29f0ed4ea1bf992550508a1fc71e167abf4bbe by KnightMiner
Create ru_ru.lang (#37)

The file was addedsrc/main/resources/assets/tcomplement/lang/ru_ru.lang
Commit 43da316c425b41fd962a255a00e02d03c8091b46 by KnightMiner
Update a couple keys in ru_ru.lamg I changed for 0.4.0 and resort according to modules
The file was modifiedsrc/main/resources/assets/tcomplement/lang/ru_ru.lang (diff)
Commit 2b1eb5e21921c7b86f1cdd732f14895b1d07fb3e by KnightMiner
Fix parent item handler capability still being called
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/tileentity/TileHighOven.java (diff)
Commit b95ffe73e362852ed5546771645d0f3db4e3b3e2 by KnightMiner
Add high oven, melter, and alloy tank info to the Materials and You book
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/melter/multiblock.json
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/alloy_tank/structure.json
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/high_oven/multiblock.json
The file was addedsrc/main/resources/assets/tcomplement/book/index.json
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/language.lang
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/structure/alloy_tank.json
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/structure/melter.json
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/high_oven/intro.json
The file was addedsrc/main/resources/assets/tcomplement/book/sections/high_oven.json
The file was addedsrc/main/resources/assets/tcomplement/textures/gui/book/melter.png
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/alloy_tank/multiblock.json
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/structure/high_oven.json
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/high_oven/structure.json
The file was addedsrc/main/resources/assets/tcomplement/book/sections/alloy_tank.json
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/melter/structure.json
The file was addedsrc/main/resources/assets/tcomplement/book/sections/melter.json
The file was modifiedsrc/main/java/knightminer/tcomplement/shared/CommonsClientProxy.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/gui/book/alloy_tank.png
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/alloy_tank/intro.json
The file was addedsrc/main/java/knightminer/tcomplement/shared/client/ModuleFileRepository.java
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/melter/intro.json
The file was addedsrc/main/java/knightminer/tcomplement/shared/client/ModuleSectionData.java
The file was addedsrc/main/resources/assets/tcomplement/textures/gui/book/high_oven.png
Commit 59477053c8105eed440b121d1dfbbecab1121606 by KnightMiner
Switch all temperature displays to use the Tinkers Construct utility

Also fix the High Oven using Kelvin internally when the rest of Tinkers uses Celsius internally
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/client/GuiMelter.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/client/GuiHighOven.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/tileentity/TileHighOven.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/melting/HighOvenMeltingWrapper.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/Util.java (diff)
The file was modifiedbuild.properties (diff)
Commit 278c7a85ce7bc67eccacdb272cbfeea073c5caad by KnightMiner
Desaturate scorched stone a bit and add the missing smelting recipe
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_tile.png (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksModule.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/drain_front.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/duct_front.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/chute_front.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_creeper.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_brick_square.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/casting_table_bottom.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/casting_table_top.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/faucet.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_stone.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/channel_out.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_brick_fancy.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/high_oven_inactive.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_paver.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/casting_basin_top.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_cobble.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/gui/jei/high_oven.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/casting_basin_side.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/items/materials/scorched_brick.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/high_oven_io_back.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/casting_basin_bottom.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_brick_triangle.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_road.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/channel_in.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_brick.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/high_oven_active.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_brick_cracked.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/scorched_brick_small.png (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/textures/blocks/high_oven/casting_table_side.png (diff)
Commit 4aa13816c688a84301d6cab5cd16566e2478503e by KnightMiner
Update mavens to use HTTPS
The file was modifiedbuild.gradle (diff)
Commit 478bdc5a7176398118a69f8cf40c00fcb2339b12 by KnightMiner
Update to lastest Mantle build and replace ModuleFileRepository with the Mantle class
The file was modifiedsrc/main/java/knightminer/tcomplement/shared/CommonsClientProxy.java (diff)
The file was removedsrc/main/java/knightminer/tcomplement/shared/client/ModuleFileRepository.java
The file was removedsrc/main/java/knightminer/tcomplement/shared/client/ModuleSectionData.java
The file was modifiedbuild.properties (diff)
Commit eae622b661b3cf4e3b02ddd14fc5a32ab1012356 by KnightMiner
Update the high oven's color in the book screenshot
The file was modifiedsrc/main/resources/assets/tcomplement/textures/gui/book/high_oven.png (diff)
Commit 380027a920688f9d591e7653e1b428c5f2f129f8 by KnightMiner
Update Tinkers and Mantle versions, plus bump version for alpha build
The file was modifiedbuild.properties (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/TinkersComplement.java (diff)
Commit d14f1c5fbed5933bd2c93ccec26645fec84c6d45 by KnightMiner
Add config option for the heater temperature

This also lowers the amount of fuel returned from a piece of fuel, so that if the melter temp is set to 1300, a lava bucket in either is the same value
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/tileentity/TileMelter.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/melter/MeltingRecipeWrapper.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/common/Config.java (diff)
Commit 17756373a458ac0c5e407735880c6adbc390de8e by KnightMiner
Allow alloy tanks to be built using a tank instead of a heater
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/tileentity/TileAlloyTank.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/book/en_us/alloy_tank/structure.json (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/blocks/BlockAlloyTank.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/book/en_us/structure/alloy_tank.json (diff)
Commit 3ee456e0cf86ffd89f0c9031898c262c6bfddca5 by KnightMiner
Add tooltip to mix recipe represenative items to clarify what is accepted
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/mix/HighOvenMixCategory.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/mix/HighOvenMixWrapper.java (diff)
Commit f3291861dbbd289f6b46ca6b6285835fde29cd04 by KnightMiner
Fix the high oven sometimes losing heat on world load
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/tileentity/TileHighOven.java (diff)
Commit a52e91a7514ef4a12aad53f3b457b6ea1e44ed77 by KnightMiner
Flip input and output on mix recipes to better match other TiC constructors
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/tank/HighOvenTank.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/TCompRegistry.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/EmptyMixRecipe.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/IMixRecipe.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksModule.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/MixRecipe.java (diff)
Commit 0636c1e6c805284621c7b97687583fae0a35d641 by KnightMiner
Fix not being able to fill the high oven using drains
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/tank/HighOvenTank.java (diff)
Commit 9b6ad9b9c0b3acdc2ad63fcc21380b6e440849d9 by KnightMiner
Allow the high oven to make steam, which can be used as a late game smeltery fuel
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/fluids/steam.png.mcmeta
The file was modifiedsrc/main/resources/assets/tcomplement/textures/gui/jei/high_oven.png (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/mix/HighOvenMixWrapper.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/library/steelworks/HighOvenFilter.java
The file was modifiedsrc/main/java/knightminer/tcomplement/library/TCompRegistry.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/MixRecipe.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/melting/HighOvenMeltingCategory.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/EmptyMixRecipe.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/events/TCompRegisterEvent.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/fuel/HighOvenFuelCategory.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/blockstates/fluid_block.json (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/fluids/steam.png
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksModule.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/library/steelworks/HeatRecipe.java
The file was addedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/heat/HighOvenHeatGetter.java
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/fluids/steam_flow.png.mcmeta
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/JEIPlugin.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/heat/HighOvenHeatCategory.java
The file was addedsrc/main/java/knightminer/tcomplement/library/steelworks/IHeatRecipe.java
The file was modifiedsrc/main/java/knightminer/tcomplement/common/PulseBase.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/tileentity/TileHighOven.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/library/steelworks/IHighOvenFilter.java
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/tank/HighOvenTank.java (diff)
The file was addedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/heat/HighOvenHeatWrapper.java
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/mix/HighOvenMixCategory.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksClientProxy.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/IMixRecipe.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/melting/HighOvenMeltingWrapper.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/fluids/steam_flow.png
The file was modifiedsrc/main/java/knightminer/tcomplement/common/Config.java (diff)
Commit 578d2ab34530aa8d3aac3d441527daf63ab7c7de by KnightMiner
Ensure things work properly when the Tinkers Construct smeltery module is disabled

Using a new Mantle feature, it now automatically disables the melter and steelworks module when smeltery is disabled
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksModule.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/shared/CommonsModule.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/_constants.json (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/shared/CommonsClientProxy.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/TinkersComplement.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/common/ClientProxy.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/MelterModule.java (diff)
The file was modifiedbuild.properties (diff)
Commit 2503a100c824b4e51cfbed23e46a00950befe9bd by KnightMiner
Add some missing deprecated annotations
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/blocks/BlockMelter.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/blocks/BlockAlloyTank.java (diff)
Commit 04ca96560c20600691a243654f396e74cde76b9c by KnightMiner
Fix ${version} in TinkersComplement not getting replaced in main class
The file was modifiedbuild.gradle (diff)
Commit 00d69016b6aecb4bd1ec3521ffcd21a72580cedd by KnightMiner
Add particles to the alloy tank when active
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/tileentity/TileAlloyTank.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/blocks/BlockAlloyTank.java (diff)
Commit e7ff0ad63259820f9608b231fa951793ed9f5d6e by KnightMiner
Allow interacting with the melter as if it were a tank

This means can now fill and empty it with a bucket and fill it with fluid pipes. Before it did not support filling with a bucket and only allowed extracting, but apparently its easier for the user to allow them to fill the melter
The file was modifiedsrc/main/java/knightminer/tcomplement/library/Util.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/tileentity/TileMelter.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/blocks/BlockMelter.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/melter/blocks/BlockAlloyTank.java (diff)
Commit d74e369c0e8f072e16f1b65bb1b69323cd7c79ef by KnightMiner
Don't limit to bucket volume for filling the high oven from a bucket
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/blocks/BlockHighOvenIO.java (diff)
Commit 216502b2bc9e791fcab5053aff98e7a0f3bc53fb by KnightMiner
Add iModifier, allows upgrading a chisel to support iChisel features (#30)
The file was modifiedbuild.properties (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/models/item/tools/chisel.mod.json (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/common/PulseBase.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/blockstates/materials.json (diff)
The file was addedsrc/main/resources/assets/tcomplement/book/en_us/modifiers/hitech.json
The file was addedsrc/main/resources/assets/tcomplement/textures/items/materials/imodifier.png
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/chisel/items/ItemChisel.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/recipes/imodifier.json
The file was addedsrc/main/java/knightminer/tcomplement/plugin/chisel/modifiers/ModHitech.java
The file was modifiedsrc/main/resources/assets/tcomplement/book/index.json (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/_constants.json (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/chisel/ChiselPlugin.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/book/sections/modifiers.json
The file was addedsrc/main/resources/assets/tcomplement/textures/items/chisel/mod_hitech.png
The file was modifiedsrc/main/java/knightminer/tcomplement/shared/CommonsModule.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/TinkersComplement.java (diff)
Commit bb3ace9b56682c79f006f2bbce000a4bfea5e8f7 by KnightMiner
Fix chisel not gaining any XP from chiseling (#39)
The file was addedsrc/main/java/knightminer/tcomplement/plugin/toolleveling/ToolLevelingPlugin.java
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/chisel/items/ItemChisel.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/TinkersComplement.java (diff)
Commit c0653048bf9e9a800d28d590242c4988d5ba6c90 by KnightMiner
Update dev chisel version to fix some bugs
The file was modifiedbuild.gradle (diff)
The file was modifiedbuild.properties (diff)
Commit c8099cd871e93c819a9f3914f979b8eb61d95a16 by KnightMiner
Add Tool Leveling via CurseForge maven so I don't need to include it in libs
The file was modifiedbuild.properties (diff)
The file was modifiedbuild.gradle (diff)
Commit 2497f734542492eb04811c20ac9b3d92e8145efc by KnightMiner
Update ru_ru.lang (#44)

* Update ru_ru.lang
The file was modifiedsrc/main/resources/assets/tcomplement/lang/ru_ru.lang (diff)
Commit 6e232f87c95f3eda68a5a9fdc461ba413315ab78 by KnightMiner
Restore a Russian string that got lost in a commit
The file was modifiedsrc/main/resources/assets/tcomplement/lang/ru_ru.lang (diff)
The file was modifiedbuild.properties (diff)
Commit 95b1248c2e5020f253063a8b847ee8419255a57b by KnightMiner
Update Mantle dependency
The file was modifiedsrc/main/java/knightminer/tcomplement/TinkersComplement.java (diff)
The file was modifiedbuild.properties (diff)
Commit eab5ea399c9b9f079a7308c93da99f3d0618c466 by KnightMiner
Fix mix recipes matching any fluid if there are additives (#46)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/MixRecipe.java (diff)
Commit d9d620e40410352d4db3e571adfdc9efa44ec460 by KnightMiner
Fix too few reagents being consumed when an item with a large output is smelted (#47)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/IMixRecipe.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/tileentity/TileHighOven.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/Util.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/MixRecipe.java (diff)
Commit a2c0fa68405ce28bd40447de4fea656a943c5ab6 by KnightMiner
Expose addAdditive as a new public method in IMixRecipe

Will be helpful for craft tweaker support later as the methods are more generic
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/IMixRecipe.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/MixRecipe.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/EmptyMixRecipe.java (diff)
Commit c92c3e08a43dd049386e8c022fb5de7480b15e82 by KnightMiner
Add a config option to disable showing high oven fuels (default false) and improve book mention of fuels
The file was modifiedsrc/main/resources/assets/tcomplement/book/en_us/high_oven/intro.json (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/JEIPlugin.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/book/en_us/high_oven/structure.json (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/common/Config.java (diff)
Commit 29bc7778a8f2eaf1f718eb3d8558f6cb96f5fa87 by KnightMiner
Add a tooltip callback to the mix recipe to state fluid amounts are per second
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/heat/HighOvenHeatWrapper.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/highoven/heat/HighOvenHeatCategory.java (diff)
The file was modifiedbuild.properties (diff)
Commit 0fbf0a08944d9e159bcb60af3d8f4354dca5641a by KnightMiner
Exposed private method of TCompRegistry (#49)

This allows to register subclasses of HighOvenFuel. This makes CraftTweaker integration for High Oven fuel easier to implement and use
The file was modifiedsrc/main/java/knightminer/tcomplement/library/TCompRegistry.java (diff)
Commit 6f66723f2e33517fde54f53465fa2c6afa0ea899 by KnightMiner
Fix mix recipes with fewer than 3 additives not working
The file was modifiedsrc/main/java/knightminer/tcomplement/library/steelworks/MixRecipe.java (diff)
Commit f1f922123bdef3948a15f604c51e79eef4f785c5 by KnightMiner
First commit of chocolate

Because it just makes sense, right?
The file was modifiedsrc/main/java/knightminer/tcomplement/common/Config.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/shared/CommonsClientProxy.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/milk_chocolate.png
The file was modifiedsrc/main/resources/assets/tcomplement/blockstates/fluid_block.json (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/items/materials/milk_chocolate_nugget.png
The file was addedsrc/main/resources/assets/tcomplement/textures/blocks/dark_chocolate.png
The file was addedsrc/main/resources/assets/tcomplement/blockstates/edibles.json
The file was addedsrc/main/resources/assets/tcomplement/textures/items/materials/cocoa_butter.png
The file was addedsrc/main/resources/assets/tcomplement/textures/items/materials/dark_chocolate_nugget.png
The file was modifiedsrc/main/java/knightminer/tcomplement/plugin/jei/JEIPlugin.java (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/lang/en_us.lang (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/items/materials/milk_chocolate_ingot.png
The file was modifiedsrc/main/java/knightminer/tcomplement/shared/CommonsModule.java (diff)
The file was modifiedsrc/main/java/knightminer/tcomplement/steelworks/SteelworksModule.java (diff)
The file was addedsrc/main/resources/assets/tcomplement/textures/items/materials/dark_chocolate_ingot.png
Commit 4dab98baac2d98103857f23dcca1fdaa690a016f by KnightMiner
Prevent registering of certain Steelworks recipes when module disabled (#55)

This prevents the following recipes being registered when Steelworks is disabled as these recipes will not have properly registered components or results in this circumstance:-

* Steel Nuggets from Ingots
* Steel Ingots from Block
* Charcoal from Charcoal Block

This closes #54.
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/steelworks/steel_nugget.json (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/steelworks/charcoal.json (diff)
The file was modifiedsrc/main/resources/assets/tcomplement/recipes/steelworks/steel_ingot_from_block.json (diff)
The file was modifiedbuild.properties (diff)