File Details
obscuras_simple_storage-fabric-mc1.21.1-v3.0.0.jar
- R
- May 10, 2026
- 4.02 MB
- 64
- 1.21.1
- Fabric
File Name
obscuras_simple_storage-fabric-mc1.21.1-v3.0.0.jar
Supported Versions
- 1.21.1
Curse Maven Snippet
Obscura's Simple Storage - Update v3.0.0
Supported Versions
- Minecraft 1.20.1 (Fabric)
- Minecraft 1.21.1 (Fabric)
Mods Updated
- Obscura's Simple Storage (Fabric 1.20.1) v3.0.0 -
obscuras_simple_storage-fabric-mc1.20.1-v3.0.0.jar - Obscura's Simple Storage (Fabric 1.21.1) v3.0.0 -
obscuras_simple_storage-fabric-mc1.21.1-v3.0.0.jar
Highlights
- New: the basic Wireless Terminal can now be bound to a Storage / Crafting Terminal exactly like the Advanced Wireless Terminal. Sneak + right-click a terminal in-world; the keybind / right-click then opens the bound terminal as long as you stay within range. This is an intentional departure from upstream Tom's Simple Storage, where only the Advanced version supports binding.
- Fixed: 1.20.1 Advanced Wireless Terminal silently refused to bind because of a stale block-tag id mismatch.
- Fixed: 1.21.1 mod blocks could disappear without dropping their item due to a
pack.mcmetaformat mismatch. - New: ExportedJars folder + scripts for one-shot rebuild/export and per-version dev client launch.
Major Changes
Wireless Terminal binding parity (1.20.1 + 1.21.1)
- Added shift + right-click binding to the basic Wireless Terminal in both branches.
- 1.20.1 stores the bound location in NBT keys
BindX/BindY/BindZ/BindDim, mirroring the Advanced Wireless Terminal's storage format. (Fabric-1.20.1/src/main/java/com/tom/storagemod/item/WirelessTerminalItem.java) - 1.21.1 stores the bound location in the existing
toms_storage:bound_posDataComponentType<WorldPos>viaDataComponentPatch, identical to how the Advanced Wireless Terminal binds. (Fabric-1.21.1/src/main/java/com/tom/storagemod/item/WirelessTerminalItem.java)
- 1.20.1 stores the bound location in NBT keys
- While bound,
use()activates the bound terminal first; if the bound dimension differs or the terminal is outsideConfig.get().wirelessRange, the player gets the sameterminal_out_of_range/terminal_invalid_block/terminal_not_loadedchat feedback as the Advanced terminal. canOpennow returns true once a bind exists, so the in-game keybind (key.toms_storage.open_terminal) opens the bound terminal directly from anywhere in the world (still gated by the wireless range / dimension checks).- Tooltip: the basic terminal's tooltip now mentions "Sneak + Right Click on a terminal to bind it" and shows a
Bound to (x, y, z) in <dim>line when bound. New translation keytooltip.toms_storage.wireless_terminal.boundwas added to bothen_us.jsonlang files.
Bug Fixes
Fabric 1.20.1
- Fixed Advanced Wireless Terminal binding being silently rejected. The
data/toms_storage/tags/blocks/remote_activate.jsontag (the only path the 1.20.1 game loads) referenced legacy block idstoms_storage:ts.storage_terminalandtoms_storage:ts.crafting_terminalthat no longer match anything in the registry. The terminal GUI still opened on right-click, masking the failure. Tag now lists the real registered ids. - Removed the redundant
data/toms_storage/tags/block/remote_activate.jsonfile (singularblock/is the 1.21+ datapack convention and is not loaded by 1.20.1, so the duplicate was confusing dead weight). - Updated the basic Wireless Terminal tooltip i18n entry to mention sneak-click binding.
Fabric 1.21.1
- Fixed mod blocks disappearing without dropping their corresponding item when broken in survival.
pack.mcmetadeclaredpack_format: 48(the data-pack format for 1.21.1), but the bundled resource pack expected format34, which could mark the entire built-in pack as incompatible on the resource side. Updated topack_format: 34withsupported_formats: [34, 48]so both the resource and data sides of the mod's bundled pack are accepted by Minecraft 1.21.1. - Updated the basic Wireless Terminal tooltip i18n entry to mention sneak-click binding.

