I have a shaped recipe using a global. array from a startup script
const rocktypes = ["andesite", "basalt", "blackstone", "calcite", "deepslate", "diorite", "dripstone", "end_stone", "granite", "netherrack", "stone", "tuff"]js
it gets put into server scripts and does a shaped recipe
e.shaped(rocktypes, [
'RR ',
'RR ',
' '
], { R: "kubejs:" + rocktypes + "_pebble" })
})```js
it keeps returning an error, saying the output itemstack "cant be empty" even though there is a variable
the code works completely fine, it creates the recipes, but it throws this useless error.