
Smithing template builder functions missing
scyfar opened this issue ยท 2 comments
Minecraft Version
1.21.1
KubeJS Version
2101.7.1-build.181+KubeJS-1.21.1
Rhino Version
2101.2.7-build.74+Rhino-1.21
Architectury Version
13.0.8+neoforge
Forge/Fabric Version
21.1.128
Describe your issue
The functions .appliesToDescription(string)
and .ingredientsDescription(string)
as mentioned in the default text are not present.
See
My desired solution is to add these functions as this actually will allow the use of custom text - the current appliesTo(string)
and ingredients(string)
functions are limiting and don't allow custom language key schemas.
The tooling to manually translate the text before passing it to the function is already in place.
Crash report/logs
No response
I don't know what you are trying to do.
You already can set custom Component with appliesToText/ingredientsText, as they are public fields, no?
Give some code examples if you can.
The expected code would be
StartupEvents.registry("item", (event) => { event.create("test", "smithing_template").appliesToDescription("display text"); });
The .appliesToDescription("display text")
is suggested by the default text as seen above. This function does not exist.
You already can set custom Component with appliesToText/ingredientsText, as they are public fields, no?
I tried around a bit more, and I found a way to do it, but given the builder and default text, this does not seem to be the intended API.
Then again, there is the doc comment ...
If you wish to apply non standard formatting (like change the colour) set the
ingredientsText
field.
let builder = event.create("test", "smithing_template");
builder.appliesToText = "appliesToText";
builder.ingredientsText = "ingredientsText";j
Thanks for making me re-investigate again, that led to the working code.
The default text is still misleading, so I leave the issue open.