Masterful Machinery
  • 👋MM Docs
  • 💡Base Features & Config
    • Controllers
    • Ports
      • Item Ports
      • Fluid Ports
      • Energy Ports
      • Mekanism Ports (Compat)
        • Gas Ports
        • Slurry Ports
        • Pigment Ports
        • Infusion Ports
      • Create Kinetic (Compat)
      • PneumaticCraft Air (Compat)
    • Extra Blocks
    • Structures
      • Structure Requirements
      • Common Requirements
    • Process Recipes
      • Ingredient Configs
      • Input Entries
      • Output Entries
      • Recipe Conditions
  • 🔩Compat Features
    • KubeJS Support
      • Register Controller
      • Register Port
      • Register Extra Blocks
      • Create Structures
      • Create Process Recipes
  • Tutorial Guides
    • Step by Step Datapack Edition
  • General Help
    • 🪞Custom Textures
  • 🎥Gallery
    • Coke Oven
  • 📎Archived Versions
    • Deprecated 1.16 Versions
    • Deprecated 1.18-1.19 Versions
      • Data Packs
Powered by GitBook
On this page
  1. Base Features & Config
  2. Ports
  3. Mekanism Ports (Compat)

Slurry Ports

How to create a Slurry Port?

{
  "id": "my_slurry_port",
  "controllerIds": "mm:controller_a",
  "name": "My Slurry Port",
  "type": "mm:mekanism/slurry",
  "config": {
    "capacity": 10000000
  }
}
"type": "mm:mekanism/slurry"

The "type" field for the Mekanism slurry port is set to mm:mekanism/slurry. This tells the config reader to look for Mekanism slurry port-specific fields inside the "config" object field.

"config": {
    "capacity": 10000000
}

Inside of the "config" field, the "capacity" field is used to define the capacity of the tank which will store the slurry in the port.

PreviousGas PortsNextPigment Ports

Last updated 11 months ago

💡