Skip to content

Commit

Permalink
feat: add charcoal block recipe to the crystallizer
Browse files Browse the repository at this point in the history
fixes #2791
  • Loading branch information
artdude543 committed Jun 8, 2018
1 parent f8a2dde commit 39a4add
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/config/mputils/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ Enhancements:
* Adjusted the cost for making Steel in the ArcFurnace (#1796)
* Added recipes to the ArcFurnace for Redstone Alloy and Modularium (#2437)
* Added more blocks to be classed as sealable for GC thanks to @Iorce! (#2764)
* Added Charcoal Block recipe to the Crystallizer (#2791)

Forge: 14.23.4.2707

Expand Down
10 changes: 9 additions & 1 deletion src/scripts/mod_integrations/abyssalcraft.zs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import mods.abyssalcraft.Crystallizer;
import mods.abyssalcraft.InfusionRitual;
import mods.abyssalcraft.Materializer;
import mods.abyssalcraft.RitualStages;
Expand Down Expand Up @@ -89,4 +90,11 @@ RitualStages.addRitualStage(STAGES.two, "oblivionCatalyst");
https://github.com/Shinoow/AbyssalCraft-Integration/wiki/MineTweaker-methods#materializer-recipes-are-added-this-way
*/
mods.abyssalcraft.Materializer.removeMaterialization(<minecraft:elytra>.withTag({}));
Materializer.removeMaterialization(<minecraft:elytra>.withTag({}));

/*
Crystallizer
https://github.com/Shinoow/AbyssalCraft-Integration/wiki/MineTweaker-methods#crystallizer-recipes-are-added-in-two-ways-to-separate-dual-output-recipes-with-single-output-recipes
*/
Crystallizer.addSingleCrystallization(<charcoalblock:charcoal_block>, <abyssalcraft:crystal:3> * 2, 0.1);

0 comments on commit 39a4add

Please sign in to comment.