Compatibility
Minecraft: Java Edition
1.21.x
Platforms
Creators
Details
Licensed ARR
Published 2 months ago
Updated 3 days ago
Changelog
Fixes: Anvil Rename Bug + Arcane Archer Variant
1) Anvil Rename Bug (vanilla renaming broken)
Problem
Players couldn’t rename items in the anvil.
The result item would appear for a second and then disappear.
Cause
The anvil listener was clearing the result whenever either input slot was empty:
- Vanilla rename uses only the left slot (right slot is empty).
- The plugin logic treated
right == nullas invalid and forcedevent.setResult(null).
Fix
Allow vanilla anvil operations when the right slot is empty.
Before (buggy logic)
if (left == null || right == null) {
event.setResult(null);
return;
}
Files
Metadata
Release channel
ReleaseVersion number
3.3Loaders
Game versions
1.21–1.21.11Downloads
1Publication date
February 2, 2026 at 7:39 PMPublisher

KinkinxD
Member


