File Details
V-Tweaks 1.19.2 3.6.8
- R
- Nov 16, 2022
- 130.78 KB
- 729
- 1.19.2+2
- Forge
File Name
VTweaks-1.19.2-3.6.8.jar
Supported Versions
- 1.19.2
- 1.19.1
- 1.19
Curse Maven Snippet
V-Tweaks Changelog MC 1.19.x
3.6.8
- Chopdown will no longer consider player-placed leaves as part of a tree
- Hopefully fixed failure to start due to FastUtils
it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap.rehasherror
3.6.7
- At long last, the chopdown feature is no longer experimental and has been finished to a point where I am content with it. This update fixes the offsets when breaking trees, as well as rotates logs as they fall.
3.6.6.2
- Fixes to NBT breakages!!
3.6.6
- Added new optional Anvil Recipe attributes
cpFromLeftandcpFromRight. Assumes to befalseif not included.cpFrom[Left|Right]will copy all NBT except for those defined in the output, to the output. You can choose to set BOTH to true, but any overlap in NBT will be overwritten by the RIGHT input.
Should work on 1.19.1 and .2, but this has not been tested.
3.6.5.1
- Hopefully resolved issues with
Accessing LegacyRandomSource from multiple threadserrors.
3.6.5
Added
- New
vtweaks:anvilrecipe type -- see below!
Changed
- Huge internal refactor of code
- Lumbering and Imperishable will not disappear when disabled, but will not function
- Recipes for Enchanted Books now use
vtweaks:anvilrecipes to control inputs and cost
vtweaks:anvil
Inputs AND outputs can have NBT defined for them! This recipe type performs a soft NBT comparison.
Example: if your item is defined as {"item": "minecraft:stick", "nbt": { "Damage": 0 }}, then if you input a stick
with enchantments or other NBT it will succeed so long as the NBT matches at the bare minimum the NBT defined in the
recipe (in this case, {Damage:0}).
imperishable.json:
json
{
"type": "vtweaks:anvil",
"left": {
"item": "minecraft:enchanted_book",
"nbt": {
"StoredEnchantments": [
{
"id": "minecraft:unbreaking",
"lvl": 3
}
]
}
},
"right": {
"item": "minecraft:enchanted_book",
"nbt": {
"StoredEnchantments": [
{
"id": "minecraft:unbreaking",
"lvl": 3
}
]
}
},
"result": {
"item": "minecraft:enchanted_book",
"nbt": {
"StoredEnchantments": [
{
"id": "vtweaks:imperishable",
"lvl": 1
}
]
}
},
"cost": 24
}
lumbering.json:
json
{
"type": "vtweaks:anvil",
"left": {
"item": "minecraft:writable_book"
},
"right": {
"item": "minecraft:golden_axe",
"nbt": {
"Damage": 0
}
},
"result": {
"item": "minecraft:enchanted_book",
"nbt": {
"StoredEnchantments": [
{
"id": "vtweaks:lumbering",
"lvl": 1
}
]
}
},
"cost": 16
}

