We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63fd260 commit 5b09010Copy full SHA for 5b09010
kubejs/server_scripts/server-constants.js
@@ -352,7 +352,10 @@ global.server = Object.freeze({
352
* @returns {this} The current instance.
353
*/
354
SequencedAssemblyBuilder.prototype.addDeployingStep = function (item) {
355
- this._steps.push(this._event.recipes.createDeploying(this._transitional, [this._transitional, item]));
+ // Inputs extracted into its own variable to work around the "union type too complex to represent" error.
356
+ /** @type {Internal.IngredientJS_} */
357
+ const inputs = [this._transitional, item]
358
+ this._steps.push(this._event.recipes.createDeploying(this._transitional, inputs));
359
return this;
360
};
361
0 commit comments