Community listing page, reviews here may not be monitored by the author.
Structure Grief Manager
No reviews yet
A server-side (and client side) protection mod that allows temporary destruction and building within structures using auto-respawn and auto-decay mechanics.
Forge is a popular mod loader for versions 1.1+ of Minecraft.
Community voices
Reviews
Filters
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
About
Project Details
For authors
Embed Badge
If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
Resources
External Links
About
Description
Structure Grief Manager (SGM)
Protection Reimagined: Don't just block griefers, manage them.
Structure Grief Manager (SGM) is not your typical protection mod. Instead of simply preventing players from breaking blocks, SGM introduces a Lifecycle System. You can allow players to break walls, loot chests, or build temporary bridges, knowing that the structure will automatically regenerate and foreign blocks will decay over time.
It allows for immersive gameplay in protected zones (like Raiding, RPG dungeons, or public servers) without leaving permanent scars on the map.
Key Features
- Smart Zone Detection: Automatically apply rules to Vanilla or Modded structures (Villages, Strongholds, Ancient Cities) using Regex ID matching. You can also define custom cuboid zones.
- Lifecycle System:
- DENY: Standard protection. Blocks cannot be broken or placed.
- ALLOW_RESPAWN: Players can break blocks, but they will reappear after a set time. served).
- ALLOW_DECAY: Players can place blocks (e.g., scaffolding, bridges), but they will disappear after a set time.
- Advanced Filtering: Use Whitelists, Blacklists, and powerful Macros (see below) to target specific blocks without listing thousands of IDs.
- Physics & Multiblocks: Smart handling of gravity blocks (sand/gravel) and dependent blocks (Doors, Beds, Torches). If a door respawns, it won't break itself because the bottom half is missing.
- Visual Feedback: When installed on the client, protected blocks feel unbreakable (Bedrock-like hardness) and denied placement is predicted instantly (Adventure mode feel), preventing "ghost blocks" and lag-back.
Configuration & Macros
The heart of SGM is its sgm.json config file. We've included a Smart Macro System to make configuration incredibly easy. You don't need to know every block ID.
Available Macros:
@solid- Matches any solid block (Stone, Dirt, Planks).@non_solid- Matches transparent/decoration blocks (Torches, Flowers, Glass).@container- Matches anything with an inventory (Chests, Barrels, Hoppers).@gravity- Matches falling blocks (Sand, Gravel, Anvils).@redstone- Matches signal sources (Levers, Buttons, Pressure Plates).*- Wildcard (Matches everything).
Example Configuration
Here is a robust example for protecting Villages:
- Chests are completely protected (Anti-Theft).
- Torches & Sand can be placed temporarily (Scaffolding).
- Walls can be broken but will regenerate (Immersion).
- Everything else is standard protection.
{
"$schema": ".../resources/assets/sgm.schema.json",
"settings": {
"tick_interval": 20,
"respawn_time": 1200,
"decay_time": 600,
"debug_mode": false
},
"zones": [
{
"name": "Village Protection",
"type": "STRUCTURE",
"priority": 10,
"structure_whitelist": ["minecraft:.*village.*"],
"rules": {
"break": [
{
"targets": ["@container"],
"action": "DENY"
},
{
"targets": ["*"],
"blacklist": ["minecraft:dirt"],
"action": "ALLOW_RESPAWN",
"timer": 600
}
],
"place": [
{
"targets": ["@non_solid", "@gravity"],
"action": "ALLOW_DECAY",
"timer": 200
},
{
"targets": ["*"],
"action": "DENY"
}
]
}
}
]
}
Commands
/sgm info- Displays the current Zone you are standing in and its priority./sgm memory- (Debug) Shows how many blocks are currently waiting to respawn or decay in the chunk./sgm reload- Reloads the configuration file instantly without restarting the server./sgm test <block_id>- Test if a block matches your current rules.
Installation
- Requirement: Minecraft Forge 1.20.1.
- Server-Side: Essential. The mod handles all logic, storage, and restoration on the server.
- Client-Side: Highly Recommended. While not strictly required to join, installing it on the client provides the visual "Unbreakable" effect and prevents client-side prediction glitches (ghost blocks).
Issues & Support
Found a bug or have a suggestion? Please report it on our GitHub Issues Page. Does a specific modded block not respawn correctly? Let us know!
Screenshots
Gallery
Versions
Files
Relations
Project Relations
More like this
Similar Mods
Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.
On ModDex
Community snapshot
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers
Statistics
Resources