Simply Tents BlackList

Quick rating

Simply Tents BlackList

No reviews yet

Simple BlackList For Simply Tents.

QoL & Tweaks
Mod Loaders
Forge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Optional
Server Required

About

Project Details

Type
Mod
License
MIT License
Latest Version
simplytentsblacklist 1.0.0
Authors
CurseForge
Modrinth

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.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Simply Tents Blacklist

A simple blacklist addon for Simply Tents mod


Overview

Simply Tents Blacklist is a lightweight addon mod for Simply Tents that allows server administrators and players to configure which blocks, items, and entities should not be picked up by tents. This provides fine-grained control over tent behavior, preventing valuable or restricted content from being moved.


Features

  • Block Blacklist - Prevent specific blocks from being picked up by tents (supports block registry names)
  • Item Blacklist - Prevent entities or block entities containing specific items from being picked up
  • Tag Support - Use block tags and item tags for flexible, category-based blacklisting
  • Recursive Item Detection - Deep scans entity and block entity NBT data to detect blacklisted items
  • Server-Side Config - All settings are configurable via server config file

Configuration

The mod generates a config file at config/simplytentsblacklist-common.toml:

[blacklist]
	# List of block registry names that should not be picked up by tents.
	# Format: modid:block_name (e.g., "minecraft:chest", "minecraft:diamond_block")
	blacklistBlocks = []
	
	# List of item registry names that should prevent entities/block entities from being picked up.
	# If an entity or block entity contains any of these items, it will not be picked up.
	# Format: modid:item_name (e.g., "minecraft:diamond", "minecraft:emerald")
	blacklistItems = []
	
	# List of block tag names that should not be picked up by tents.
	# Format: #modid:tag_name (e.g., "#minecraft:logs", "#forge:ores")
	blacklistBlockTags = []
	
	# List of item tag names that should prevent entities/block entities from being picked up.
	# If an entity or block entity contains any items with these tags, it will not be picked up.
	# Format: #modid:tag_name (e.g., "#minecraft:logs", "#forge:gems")
	blacklistItemTags = []

Example Configuration

[blacklist]
	blacklistBlocks = ["minecraft:chest", "minecraft:ender_chest", "minecraft:spawner"]
	blacklistItems = ["minecraft:diamond", "minecraft:netherite_ingot"]
	blacklistBlockTags = ["#minecraft:doors", "#forge:ores"]
	blacklistItemTags = ["#forge:gems", "#forge:ingots/gold"]

How It Works

When a player attempts to pick up an area with a tent:

  1. Block Check - If the block is in the block blacklist or matches a blacklisted block tag, it remains in the world
  2. Item Check - If an entity or block entity contains any blacklisted items (or items matching blacklisted tags), it remains in the world
  3. Safe Pickup - Only non-blacklisted blocks and entities are packed into the tent

Installation

  1. Install Minecraft Forge for Minecraft 1.20.1
  2. Download and install GeckoLib (required dependency)
  3. Download and install Simply Tents
  4. Place this mod's .jar file into your mods folder
  5. Launch the game and configure the blacklist in config/simplytentsblacklist-common.toml

Compatibility

  • Server-Side: This mod is required on the server to function properly
  • Client-Side: Optional on client (for singleplayer worlds, install on both sides)

License

This mod is licensed under the MIT License.


Credits

  • Author: Shinonome Shakusora
  • Thanks: The Simply Tents team for creating the original mod

Simply Tents Blacklist

A simple blacklist addon for Simply Tents mod


Overview

Simply Tents Blacklist is a lightweight addon mod for Simply Tents that allows server administrators and players to configure which blocks, items, and entities should not be picked up by tents. This provides fine-grained control over tent behavior, preventing valuable or restricted content from being moved.


Features

  • Block Blacklist - Prevent specific blocks from being picked up by tents (supports block registry names)
  • Item Blacklist - Prevent entities or block entities containing specific items from being picked up
  • Tag Support - Use block tags and item tags for flexible, category-based blacklisting
  • Recursive Item Detection - Deep scans entity and block entity NBT data to detect blacklisted items
  • Server-Side Config - All settings are configurable via server config file

Configuration

The mod generates a config file at config/simplytentsblacklist-common.toml:

[blacklist]
	# List of block registry names that should not be picked up by tents.
	# Format: modid:block_name (e.g., "minecraft:chest", "minecraft:diamond_block")
	blacklistBlocks = []
	
	# List of item registry names that should prevent entities/block entities from being picked up.
	# If an entity or block entity contains any of these items, it will not be picked up.
	# Format: modid:item_name (e.g., "minecraft:diamond", "minecraft:emerald")
	blacklistItems = []
	
	# List of block tag names that should not be picked up by tents.
	# Format: #modid:tag_name (e.g., "#minecraft:logs", "#forge:ores")
	blacklistBlockTags = []
	
	# List of item tag names that should prevent entities/block entities from being picked up.
	# If an entity or block entity contains any items with these tags, it will not be picked up.
	# Format: #modid:tag_name (e.g., "#minecraft:logs", "#forge:gems")
	blacklistItemTags = []

Example Configuration

[blacklist]
	blacklistBlocks = ["minecraft:chest", "minecraft:ender_chest", "minecraft:spawner"]
	blacklistItems = ["minecraft:diamond", "minecraft:netherite_ingot"]
	blacklistBlockTags = ["#minecraft:doors", "#forge:ores"]
	blacklistItemTags = ["#forge:gems", "#forge:ingots/gold"]

How It Works

When a player attempts to pick up an area with a tent:

  1. Block Check - If the block is in the block blacklist or matches a blacklisted block tag, it remains in the world
  2. Item Check - If an entity or block entity contains any blacklisted items (or items matching blacklisted tags), it remains in the world
  3. Safe Pickup - Only non-blacklisted blocks and entities are packed into the tent

Installation

  1. Install Minecraft Forge for Minecraft 1.20.1
  2. Download and install GeckoLib (required dependency)
  3. Download and install Simply Tents
  4. Place this mod's .jar file into your mods folder
  5. Launch the game and configure the blacklist in config/simplytentsblacklist-common.toml

Compatibility

  • Server-Side: This mod is required on the server to function properly
  • Client-Side: Optional on client (for singleplayer worlds, install on both sides)

License

This mod is licensed under the MIT License.


Credits

  • Author: Shinonome Shakusora
  • Thanks: The Simply Tents team for creating the original mod

Screenshots

Gallery

This project has no gallery images yet.

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

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works