Freezer
The Freezer is the bottom compartment of the Fridge.
It can be used to freeze items, but requires Ice to operate.
Default Freezer Recipes
- Water Bucket -> Ice
- Ice -> Packed Ice
- Lava Bucket -> Obsidian
- Slimeball -> Snowball
- Poisonous Potato -> Potato
- Rotten Flesh -> Flesh
Removing
Remove matching freezer recipes.
mods.cfm.Freezer.remove(@Optional final IIngredient output, @Optional final IIngredient input);
// Remove recipes that result in Icemods.cfm.Freezer.remove(<minecraft:ice>);// Remove recipes that require a Lava Bucketmods.cfm.Freezer.remove(null,<minecraft:lava_bucket>);// Remove all recipesmods.cfm.Freezer.remove();
Adding
Add a freezer recipe. Only supports inputs of size 1.
mods.cfm.Freezer.addRecipe(@Nonnull final IItemStack output, @Nonnull final IItemStack input);
// Add a recipe that makes 16 Ice from a Lava Bucketmods.cfm.Freezer.addRecipe(<minecraft:ice>.withAmount(16),<minecraft:lava_bucket>);// Adds a recipe that makes 16 Obsidian from a Water Bucketmods.cfm.Freezer.addRecipe(<minecraft:obsidian>.withAmount(16),<minecraft:water_bucket>);// Adds a recipe that makes a Water Bucket from a Bucketmods.cfm.Freezer.addRecipe(<minecraft:water_bucket>,<minecraft:bucket>);