Good Farming

Good Farming

Beta 1.7.3 additions and tweaks to make farming easier.

by
69 Downloads
babricfabricfoodgame-mechanicsutility
Rent Server with this Mod

Screenshots

Plant many items at once! Walk without trampling crops!

About this Mod

Good Farming

Minecraft Beta 1.7.3
Modrinth Downloads
Maven Version

Beta 1.7.3 additions and tweaks to make farming easier.

Adds a Seed Bag, which stores up to 512 Seeds or Bone Meal, and plants on farmland in a 7×5×7 area by right-clicking
it on top of a block. The bag can also be used from further away than regular items (5 blocks). A Seed Bag can only hold
one type of item, and cannot be emptied other than by using it. Seeds picked up will automatically go into Seed Bags in
your inventory that already contain at least one seed.

Other tweaks include:

  • Nerfs crop trampling, replicating the behaviour of modern versions where you need to fall from a height to trample
    the crops instead.
  • Prevents consuming Bone Meal when used on fully grown wheat and saplings that can't grow (doesn't affect modded
    blocks)
  • Quick replanting by right-clicking on crops if you have the seeds. Will automatically use the seeds from the harvested
    crop, seeds from your inventory, and seeds from Seed Bags in your inventory.

Screenshot of Minecraft Beta 1.7.3 farm. The text reads 'Plant many items at once!', 'Seeds', 'Bone Meal', and 'Walkwithout trampling crops!'

Items

Seed Bag

Recipe for the Seed Bag, which requires 1 string on top of 1 leather, and crafts 1 Seed Bag.

1x String + 1x Leather (shaped) → 1x Seed bag. Holds 512 seeds.

Seed Bag + Seeds

Recipe for filling the Seed Bag with Seeds. Combine the Seed Bag shapelessly with any amount of Seeds to fill the Seed Bag.

1x Seed Bag + any amount of Seeds (shapeless) to fill the Seed Bag. Up to 512 Seeds.

Seed Bag + Bone Meal

Recipe for filling the Seed Bag with Bone Meal. Combine the Seed Bag shapelessly with any amount of Bone Meal to fill the Seed Bag.

1x Seed Bag + any amount of Bone Meal (shapeless) to fill the Seed Bag. Up to 512 Bone Meal.

Compatibility

This mod has no known major compatibility issues. Functionality on modded blocks by design isn't effective without
adding datapack entries; see Datapack format.

The mod adds explicit compatibility with Always More Items.

Requirements

Recommended

Configuration

The mod's configuration can be configured in-game (if Mod Menu Babric is
installed) or in .minecraft/config/good-farming/good-farming.yml.

# If enabled, farmland is only trampled when jumping, not walking
tramplingNerfEnabled: true

# Prevents consuming Bone Meal when used on fully grown wheat 
# and saplings that can't grow (doesn't affect modded blocks)
bonemealWastageFixEnabled: true

# Allow replanting crops with right-click (if you have the seeds)
quickReplantingEnabled: true

# The lateral radius, in blocks, to plant seeds with the Seed Bag
seedBagPlantLateralRadius: 3

# The vertical radius, in blocks, to plant seeds with the Seed Bag
seedBagPlantVerticalRadius: 2

# The range, in blocks, that the Seed Bag can be used from
seedBagThrowRange: 5.0

# The maximum number of seeds the Seed Bag can store
seedBagCapacity: 512

# Automatically put seeds into Seed Bags in your inventory when picked up
seedBagAutoPickupEnabled: true

# Displays the amount of seeds in the Seed Bag in the hotbar and inventory
seedBagOverlayEnabled: true

Datapack format

Seed types

The types of seeds that can be placed in a Seed Bag are provided via datapacks in the good-farming:seed_types
namespace. For example, data/good-farming/good-farming/seed_types/bone_meal.json:

{
  "item": {
    "id": "minecraft:dye",
    "damage": 15
  },
  "textureId": "good-farming:item/seed_bag_bone_meal",
  "plantOnBlocks": [
    {
      "id": "minecraft:wheat"
    },
    {
      "id": "minecraft:sapling"
    },
    {
      "tag": "good-farming:crops"
    },
    {
      "tag": "good-farming:saplings"
    }
  ]
}
  • item: Object describing the item that can be placed in the Seed Bag. Seed placement will use the behaviour of
    this item, or if it's a tag, the first item loaded by the game in that tag.
    • id: The ID of the item. Must be specified if tag is not.
    • tag: The item tag to use. Must be specified if id is not.
    • damage: (optional) If id is specified, the damage value of the item to match. Leave blank or set to -1 to
      match all damage values.
  • textureId: (optional) The resource ID of the texture to use for the Seed Bag when it contains these seeds. If a
    texture isn't specified, it will fall back to the empty Seed Bag texture.
  • plantOnBlocks: (optional) List of blocks that seeds will attempt to be planted on. If not specified, they will
    be planted on any block that the item's class can use.
    • id: The ID of the block to use. Must be specified if tag is not.
    • tag: The block tag to use. Must be specified if id is not.
    • meta: (optional) If id is specified, the meta value of the block to match. Leave blank or set to -1 to
      match all meta values.

Mods can provide their own seed types by placing the corresponding JSON files in data/$modId/good-farming/seed_types.
Good Farming also provides an API for datagenning seed types with
stapi-datagen:
SeedTypeProvider.
See GoodFarmingSeedTypeProvider.kt
for an example.

Crop types

The types of seeds that can be quick-harvested by right-clicking are provided via datapacks in the
good-farming:crop_types namespace. For example, data/good-farming/good-farming/crop_types/wheat.json:

{
  "crops": [
    {
      "id": "minecraft:wheat",
      "meta": 7
    }
  ],
  "seeds": [
    {
      "id": "minecraft:wheat_seeds",
      "damage": -1
    }
  ]
}
  • crops: List of blocks that can be quick-harvested by right-clicking.
    • id: The ID of the block to use. Must be specified if tag is not.
    • tag: The block tag to use. Must be specified if id is not.
    • meta: (optional) If id is specified, the meta value of the block to match. Leave blank or set to -1 to
      match all meta values.
  • seeds: (optional) List of items that can be replanted here when the block is quick-harvested. When the block is
    broken, its drops will be searched for one of these items, and then that item will be replanted in the same spot. If
    it isn't found, then the player's hand, hotbar, and inventory are searched for matching seeds or a matching Seed Bag
    containing the seeds; whichever is found first.
    • id: The ID of the item. Must be specified if tag is not.
    • tag: The item tag to use. Must be specified if id is not.
    • damage: (optional) If id is specified, the damage value of the item to match. Leave blank or set to -1 to
      match all damage values.

Mods can provide their own crop types by placing the corresponding JSON files in data/$modId/good-farming/crop_types.
Good Farming also provides an API for datagenning crop types with
stapi-datagen:
CropTypeProvider.
See GoodFarmingCropTypeProvider.kt
for an example.

Datapacks in StationAPI

Note that StationAPI currently doesn't support loading datapacks outside of mods. If you as a player or server admin
would like to modify the built-in seed types, you can do this by wrapping your datapack in a mod:

  1. Create a folder for your datapack, e.g. example-pack.
  2. Place your JSON files in example-pack/data/example-pack/good-farming/seed_types or
    example-pack/data/example-pack/good-farming/crop_types.
  3. Place a fabric.mod.json
    (spec) file in the root with the following
    contents:
    {
      "schemaVersion": 1,
      "id": "example-pack",
      "version": "1.0.0",
      "name": "Example Pack for Good Farming",
      "description": "Your own changes to Good Farming's data here!"
    }
    
    Note that name and description are technically optional, but Mod Menu will crash if they're not set.
  4. Zip the contents of the datapack's folder. i.e. the root of the zip should contain fabric.mod.json and data.
  5. Rename the zip to .jar, e.g. example-pack.jar.
  6. Place the jar in your mods folder, e.g. .minecraft/mods/example-pack.jar.
  7. Restart the game.

License

This mod is licensed under the MIT license.

Available Versions

1.1.1release
MC b1.7.3babric, fabric
June 13, 2026
1.1.0release
MC b1.7.3babric, fabric
June 13, 2026
1.0.2release
MC b1.7.3babric
April 8, 2026
1.0.1release
MC b1.7.3babric
April 8, 2026
1.0.0release
MC b1.7.3babric
April 8, 2026

How to Install Good Farming on Your Server

1

Order Server

Order a Minecraft Java server with at least 3 GB RAM (4 GB recommended).

2

Set babric Loader

In the panel under "Egg", select the babric loader and matching Minecraft version (b1.7.3).

3

Install Mod

Open the mod browser in the dashboard and search for "Good Farming". Click "Install" – done! Alternatively, upload the .jar via SFTP to the /mods folder.

Compatibility

Mod Loaders

babricfabric

Minecraft Versions

b1.7.3

Server-side

Required

Recommended RAM

4 GB(min. 3 GB)

Frequently Asked Questions

Good Farming server crashes on startup – what to do?

Most common cause: wrong babric version or insufficient RAM. Check the server log (latest.log) for "OutOfMemoryError" or "Mixin" errors. With Mado Hosting: ensure at least 3 GB RAM is allocated and the loader matches the mod version (b1.7.3). You can switch loaders with one click in the panel.

Is Good Farming compatible with babric and fabric?

Good Farming officially supports babric, fabric for Minecraft b1.7.3. The Mado dashboard automatically detects incompatible loader combinations.

Server lagging with Good Farming – how to optimize performance?

Recommended RAM: 4 GB (per 8 players). Use /spark profiler to check if Good Farming consumes the most tick time. Common fixes: reduce server view-distance to 8-10, install "performant" or "starlight" as supplementary mods on Forge. With Mado Hosting, your server runs on NVMe SSDs with dedicated CPU cores for minimal latency.

Rent Modded Server

Install Good Farming with just one click on your server.

Recommended RAM
4 GBab €8/mo
Min. 3 GB | +1 GB pro 8 Spieler
Create Server Now
1-Click Mod Install
NVMe SSD Storage
DDoS Protection included

Details

License
MIT License
Server-side
Required

Supported Versions

b1.7.3