Fast Better Grass: Untinted Edition

⭐ — (3 endorsements) 📥 1,732 downloads 📌 v1.0.0 📅 5/2/2025
🟠 Updated over a year ago

By HandLock_ · decoration

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 4/29/2025 📅 Created: 5/2/2025

🔍 Analysis

  • 👍 0.2% endorsement rate
  • 🏆 #43 of 216 decoration mods in this game by downloads

📋 About This Mod

# Fast Better Grass – **Untinted Edition** *A micro-pack that removes biome coloring from Fast Better Grass so it matches classic/alpha, fixed-palette foliage packs.* --- ## 🌿 **Why This Exists** Packs like **Golden Days + Alpha Addon** and **PACP + Beta Addon + Alpha Addon** revive the bright, always-green look of Minecraft Classic/Alpha. Fast Better Grass keeps terrain edges tidy, but its full grass-blocks still pick up biome tints—so plains, jungles, swamps, etc. show jarring color shifts. This add-on keeps Fast Better Grass’s sides overlay while **locking the grass color** to the grass_block_top.png texture, giving you seamless greenery everywhere. --- ## 🗒️ **What’s Inside** The *only* file touched is: ``` assets/minecraft/models/block/grass_block.json ``` It simply drops every `tintindex: 0`, disabling biome tint: <details><summary>❌ Original (from Fast Better Grass)</summary> ```json { "parent": "block/block", "textures": { "particle": "block/dirt", "bottom": "block/dirt", "top": "block/grass_block_top" }, "elements": , "to": , "faces": { "down": { "uv": , "texture": "#bottom", "cullface": "down" }, "up": { "uv": , "texture": "#top", "cullface": "up", "tintindex": 0 }, "north": { "uv": , "texture": "#top", "cullface": "north", "tintindex": 0 }, "south": { "uv": , "texture": "#top", "cullface": "south", "tintindex": 0 }, "west": { "uv": , "texture": "#top", "cullface": "west", "tintindex": 0 }, "east": { "uv": , "texture": "#top", "cullface": "east", "tintindex": 0 } } } ] } ``` </details> <details><summary>👌 Untinted Edition</summary> ```json { "parent": "block/block", "textures": { "particle": "block/dirt", "bottom": "block/dirt", "top": "block/grass_block_top" }, "elements": , "to": , "faces": { "down": { "uv": , "texture": "#bottom", "cullface": "down" }, "up": { "uv": , "texture": "#top", "cullface": "up" }, "north": { "uv": , "texture": "#top", "cullface": "north" }, "south": { "uv": , "texture": "#top", "cullface": "south" }, "west": { "uv": , "texture": "#top", "cullface": "west" }, "east": { "uv": , "texture": "#top", "cullface": "east" } } } ] } ``` </details> Load order recommendation: ``` ⬆️ Fast Better Grass – Untinted Edition ➡️ Fast Better Grass (original) ⬇️ Golden Days + Alpha Addon / PACP + Beta Addon + Alpha Addon ``` --- ## ✅ **Compatibility** | Feature | Status | |---------------------------------|--------| | Minecraft 1.20-1.21.5 (Java) | ✔ Tested, no mods needed | | Fast Better Grass 1.21.5 | ✔ Tested, should also work for newer versions | | Other resourcepacks | ✔ Works with any colored grass_block_top.png (if gray, it will not work) | --- ## 🤝 **Credits** - **Fast Better Grass** by **robotkoer** – base pack and overlay logic. - Untinted tweak by **HandLock_** - Distributed under the same license as the original (MIT). *“Sometimes the best color… is the one that never changes.”*

# Fast Better Grass – Untinted Edition A micro-pack that removes biome coloring from Fast Better Grass so it matches classic/alpha, fixed-palette foliage packs.

## 🌿 Why This Exists Packs like Golden Days + Alpha Addon and PACP + Beta Addon + Alpha Addon revive the bright, always-green look of Minecraft Classic/Alpha. Fast Better Grass keeps terrain edges tidy, but its full grass-blocks still pick up biome tints—so plains, jungles, swamps, etc. show jarring color shifts. This add-on keeps Fast Better Grass’s sides overlay while locking the grass color to the grass_block_top.png texture, giving you seamless greenery everywhere.

## 🗒️ What’s Inside The only file touched is:

``` assets/minecraft/models/block/grass_block.json ```

It simply drops every `tintindex: 0`, disabling biome tint:

❌ Original (from Fast Better Grass)

```json { "parent": "block/block", "textures": { "particle": "block/dirt", "bottom": "block/dirt", "top": "block/grass_block_top" }, "elements": [ { "from": , "to": , "faces": { "down": { "uv": , "texture": "#bottom", "cullface": "down" }, "up": { "uv": , "texture": "#top", "cullface": "up", "tintindex": 0 }, "north": { "uv": , "texture": "#top", "cullface": "north", "tintindex": 0 }, "south": { "uv": , "texture": "#top", "cullface": "south", "tintindex": 0 }, "west": { "uv": , "texture": "#top", "cullface": "west", "tintindex": 0 }, "east": { "uv": , "texture": "#top", "cullface": "east", "tintindex": 0 } } } ] } ```

👌 Untinted Edition

```json { "parent": "block/block", "textures": { "particle": "block/dirt", "bottom": "block/dirt", "top": "block/grass_block_top" }, "elements": [ { "from": , "to": , "faces": { "down": { "uv": , "texture": "#bottom", "cullface": "down" }, "up": { "uv": , "texture": "#top", "cullface": "up" }, "north": { "uv": , "texture": "#top", "cullface": "north" }, "south": { "uv": , "texture": "#top", "cullface": "south" }, "west": { "uv": , "texture": "#top", "cullface": "west" }, "east": { "uv": , "texture": "#top", "cullface": "east" } } } ] } ```

Load order recommendation:

``` ⬆️ Fast Better Grass – Untinted Edition ➡️ Fast Better Grass (original) ⬇️ Golden Days + Alpha Addon / PACP + Beta Addon + Alpha Addon ```

## ✅ Compatibility

| Feature | Status | |---------------------------------|--------| | Minecraft 1. 20-1. 21. 5 (Java) | ✔ Tested, no mods needed | | Fast Better Grass 1. 21. 5 | ✔ Tested, should also work for newer versions | | Other resourcepacks | ✔ Works with any colored grass_block_top.png (if gray, it will not work) |

## 🤝 Credits - Fast Better Grass by robotkoer – base pack and overlay logic. - Untinted tweak by HandLock_ - Distributed under the same license as the original (MIT).

“Sometimes the best color… is the one that never changes.”

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Resource Packs
Author
HandLock_
Version
1.0.0
Downloads
1,732
Endorsements
3
Category
decoration
Created
5/2/2025
Updated
4/29/2025
Game Versions
1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4
Tags
decoration, models, tweaks

🔧 How to Install Minecraft Resource Packs Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Resource Packs →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Resource Packs commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Resource Packs versions does Fast Better Grass: Untinted Edition support?

The author lists 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5. Other versions may work but are untested by the author.

What is the latest version of Fast Better Grass: Untinted Edition?

Version 1.0.0, published 2025-04-29 with 1,732 downloads recorded at the source.

Keep browsing — more Minecraft Resource Packs mods await

📋 All Minecraft Resource Packs Mods 🏆 Top 25 📂 More decoration 👤 More by HandLock_ 🔎 Similar Mods 🌐 Best decoration (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods