Added crafttweaker script for disabling netherite
This commit is contained in:
parent
d60b066b77
commit
c696c03d98
3 changed files with 9 additions and 1 deletions
|
@ -134,3 +134,7 @@ metafile = true
|
||||||
file = "mods/styledplayerlist.pw.toml"
|
file = "mods/styledplayerlist.pw.toml"
|
||||||
hash = "d2e79b6f83ec10bb1d275186e8f79048ca73ca48b434c2539bf2542d86f2cf56"
|
hash = "d2e79b6f83ec10bb1d275186e8f79048ca73ca48b434c2539bf2542d86f2cf56"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "scripts/removals.zs"
|
||||||
|
hash = "25d1967daee044fd23fb686fd767c200fb884672e6e98a63506e1a89e927c273"
|
||||||
|
|
|
@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
|
||||||
[index]
|
[index]
|
||||||
file = "index.toml"
|
file = "index.toml"
|
||||||
hash-format = "sha256"
|
hash-format = "sha256"
|
||||||
hash = "3ab87a5b0e99a5919397ad7c987df37281f97433693cc31f090bbaef57808681"
|
hash = "37252c923f6704220423ae988c89695c91028d5e9dbd523833f67b0056abc58c"
|
||||||
|
|
||||||
[versions]
|
[versions]
|
||||||
fabric = "0.15.7"
|
fabric = "0.15.7"
|
||||||
|
|
4
src/scripts/removals.zs
Normal file
4
src/scripts/removals.zs
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
smithingTable.remove(<item:minecraft:netherite_helmet>)
|
||||||
|
smithingTable.remove(<item:minecraft:netherite_chestplate>)
|
||||||
|
smithingTable.remove(<item:minecraft:netherite_leggings>)
|
||||||
|
smithingTable.remove(<item:minecraft:netherite_boots>)
|
Loading…
Reference in a new issue