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.
2 parents 972f5f1 + 09c25c4 commit 09cd36cCopy full SHA for 09cd36c
1 file changed
kubejs/server_scripts/gregification/pipez.js
@@ -2,7 +2,7 @@ if (global.packmode !== 'hard'){
2
(() => {
3
4
ServerEvents.recipes(event => {
5
- const id = global.id;
+ const id = global.id;
6
7
event.remove({mod: 'pipez'});
8
@@ -106,6 +106,22 @@ ServerEvents.recipes(event => {
106
B: '#minecraft:buttons'
107
}).id('start:shaped/filter_destination_tool');
108
109
+ const tiers = [
110
+ "basic",
111
+ "improved",
112
+ "advanced",
113
+ "ultimate",
114
+ // "infinity"
115
+ ];
116
+
117
+ tiers.forEach(tier => {
118
+ const upgrade = `pipez:${tier}_upgrade`;
119
+ event.shapeless(
120
+ Item.of(upgrade),
121
+ [Item.of(upgrade).ignoreNBT()]
122
+ ).id(`start:shapeless/pipez_${tier}_upgrade_reset`);
123
+ });
124
125
});
126
})()
127
}
0 commit comments