diff --git a/changelog.txt b/changelog.txt
index 71532696..ec81110a 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -6,6 +6,13 @@ Version 2.0.0-18
 - Fixed step height issue with C&B stuff. Apparently step height is now 0.6 by default instead of 0.5.
 - Added Ritual: Song of the Cleansing Soul to remove Living Armour upgrades from the armour.
 - Added Ritual: Ritual of Living Evolution, which is used to set the living armour's max upgrade points to 300.
+- Added Ritual: The Timberman to cut down trees. Requires a chest on top of the MRS in order to collect the drops from harvested trees.
+- Added Ritual: Hymn of Syphoning, which syphons up fluids around it in a 16 block radius and puts the fluid in the tank above it.
+- Added Ritual: The Assembly of the High Altar, which places runes and blocks from the inventory above it in the world in the form of a blood altar. Autobuilding altars~
+- Added Ritual: The Gate of the Fold. 
+- Added Ritual: The Filler. Places blocks from the inventory on top of it in the world.
+- Added Ritual: Le Vulcanos Frigius
+
 - Added tooltip to living armour to show the current upgrade points of the armour.
 - Added recipe for the training bracelet. Combine in an anvil with an upgrade tome to set it as the upgrade to train.
 - Ammended range of Zephyr ritual
@@ -14,6 +21,9 @@ Version 2.0.0-18
 - Removed the FOV effect from the Quick Feet speed upgrade.
 - Minor work on the Demon Crucible.
 - Crucibles now fill the tartaric gems of close-by hellfire forges
+- Fixed rituals not correctly re-activating when taking off a redstone signal after reloading the world.
+- Added Teleposition Sigil, which teleports the user to the bound Teleposer.
+- Added Transposition Sigil, which picks up the block clicked on including the NBT of the given tile.
 
 ------------------------------------------------------
 Version 2.0.0-17
diff --git a/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java b/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java
index 7fb4d78d..1e38d866 100644
--- a/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java
+++ b/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java
@@ -202,6 +202,8 @@ public class ModRecipes
         TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_BRIDGE), 600, 50, Blocks.soul_sand, Blocks.soul_sand, "stone", Blocks.obsidian);
         TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_SEVERANCE), 800, 70, Items.ender_eye, Items.ender_pearl, "ingotGold", "ingotGold");
         TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_COMPRESSION), 2000, 200, "blockIron", "blockGold", Blocks.obsidian, "cobblestone");
+        TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_TELEPOSITION), 1500, 200, ModBlocks.teleposer, "glowstone", "blockRedstone", "ingotGold");
+        TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_TRANSPOSITION), 1500, 200, ModBlocks.teleposer, "gemDiamond", Items.ender_pearl, Blocks.obsidian);
 
         TartaricForgeRecipeRegistry.registerRecipe(new ItemStack(ModItems.sentientArmourGem), 240, 150, Items.diamond_chestplate, new ItemStack(ModItems.soulGem, 1, 1), Blocks.iron_block, Blocks.obsidian);
 
diff --git a/src/main/java/WayofTime/bloodmagic/ritual/RitualPump.java b/src/main/java/WayofTime/bloodmagic/ritual/RitualPump.java
index 3cf4aaff..6c3be5e9 100644
--- a/src/main/java/WayofTime/bloodmagic/ritual/RitualPump.java
+++ b/src/main/java/WayofTime/bloodmagic/ritual/RitualPump.java
@@ -18,7 +18,6 @@ import java.util.Iterator;
 
 public class RitualPump extends Ritual
 {
-
     public static final String PUMP_RANGE = "pumpRange";
 
     private ArrayList<BlockPos> liquidsCache;