fix commit

This commit is contained in:
sainagh
2026-07-25 16:20:42 -05:00
parent 9396611ce0
commit c6df59caf7
3226 changed files with 209810 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import crafttweaker.data.IData;
// recipes.remove(<agricraft:seed_analyzer>);
// recipes.remove(<agricraft:peripheral>);
val chuckensticc = <roost:chicken>;
val chuckeneggo = <chickens:spawn_egg>;
recipes.addShapeless(
"chickensticctoegg",chuckeneggo,
[(chuckensticc.marked("mark").transformNew(function(item) { return item.withTag(item.tag); })).noReturn()],
function(out,ins,cInfo){
var chickenspeciestype = ins.mark.tag.Chicken as string;
var outputEggTag as IData = {
ChickenType:{id:chickenspeciestype}
};
return out.updateTag(outputEggTag);
},
null
);