Mineuniverse
Log in Register
Mods

Recipes for All

Unlock the full Vanilla Recipe Book
by mallrat208
Download Claim this project
261,642 downloads
0 likes
Updated Jul 6, 2026
0 hypes
Miscellaneous

Recipes for All is a small mod that Unlocks all Recipes for the Vanilla Recipe Book when the Player joins the world. Clients connecting to servers with this mod do not require this mod. It is recommended to have it client side if you wish to have this feature function in single player worlds however.

Recipes that do not have ingredients or a output are not unlocked, this prevents broken recipes that you cannot actually craft from showing up.

This is an extremely tiny mod, as such rather than hosting a GitHub repository for it, I've included the source below

package com.mr208.rfa;

import com.google.common.collect.Lists;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.item.crafting.CraftingManager;
import net.minecraft.item.crafting.IRecipe;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventBusSubscriber;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.PlayerEvent.PlayerLoggedInEvent;

import java.util.ArrayList;

@EventBusSubscriber
@Mod(modid = "rfa", name = "Recipes For All", version = "1.0.0", acceptableRemoteVersions = "*")
public class RecipesForAll
{
	
	@SubscribeEvent
	public static void onPlayerLoggin(PlayerLoggedInEvent event)
	{
		if(event.player instanceof EntityPlayerMP)
		{
			ArrayList<IRecipe> recipes = Lists.newArrayList(CraftingManager.REGISTRY);
			recipes.removeIf((recipe)-> recipe.getRecipeOutput().isEmpty());
			recipes.removeIf((recipe)-> recipe.getIngredients().isEmpty());
			event.player.unlockRecipes(recipes);
		}
	}
	
}

 

Recipes For All - 1.12.2 - 1.0.0
MC 1.12.2
Release 2018-05-19 Get

More from mallrat208

Loadout
8,856
WIRED: More Augs
784,791
UBC Ore Registrar
756,127
Equivalent Storage
699,306
Vehicle Registration
6,346
Multifarm Crops
557,832

You Might Also Like

LoadingTips
A mod that adds custom tips to the loading screen
999,218
Sampler
Performance oriented debugging/administration tools
998,926
VulkanMod
Vulkan renderer mod for Minecraft.
997,115
Charm Fixer
Disables some modules on charm to fix incompatbility issues with owo
996,251
Trading station
Basic items to item trading machines
99,755
NarrateBookForMe [FABRIC]
Adds a narration keybind, and two GUI buttons to the book screen. Text-to-speech (tts) / narration on the go! Client sided.
99,734