Tags
Creators
Details
Licensed Apache-2.0
Published 8 months ago
Updated 2 months ago
All versions
1.1.5+neoforge-26.2
Release
1.1.5 neoforge 26.22 months ago 559
Compatibility
Minecraft: Java Edition
26.2
Platform
NeoForge
Supported environments
Client and server
Changes
REConstructed Wands v1.1.5
Bug Fixes
- 26.2 NeoForge/Fabric wand GUI crash — Removed duplicate background blur in
ScreenWand.extractRenderStatethat causedIllegalStateException: Can only blur once per frame(#1). - Survival undo duplication (placement) — Undoing a placement now removes the block without drops (
removeBlock(pos, false)), so items are not duplicated whenUndoHistoryrefunds the block item. - Survival undo duplication (destruction) — Restoring a destroyed block in survival now consumes one matching block item from the player inventory before placing; creative mode skips consumption.
New Features / Improvements
- EnableUndo client config — New
EnableUndooption (defaulttrue) in client config disables OPTKEY undo (green highlight + sneak+RMB revert) when set tofalse. Server-side undo hooks are gated for future dedicated-server config support.
Compatibility
- Drop-in replacement for 1.1.4 on all six loader targets
- Minecraft 1.20.1 — Fabric, Forge
- Minecraft 1.21.1 — Fabric, NeoForge
- Minecraft 26.2 — Fabric, NeoForge
Upgrade Notes
- Install 1.1.5 for your loader from Modrinth / CurseForge /
releases/ - Fully restart the game (not only
/reload) - To disable undo: set
EnableUndo = falseunder thekeyssection inreconstructedwands-client.toml(Forge/NeoForge) or equivalent client config
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:zj6ZBpmY:ArxcjK0Q"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:zj6ZBpmY:ArxcjK0Q"
}

