Skip to content

Commit

Permalink
Merge pull request #2171 from loving2/Jeb-Bee-Names
Browse files Browse the repository at this point in the history
Remove bee name requirement from Apiary recipes
  • Loading branch information
Mitchell5200 authored Dec 25, 2024
2 parents fd91e8c + 76821fc commit 26bc209
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions kubejs/server_scripts/mods/gtceu/apiary_recipes.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,10 @@ ServerEvents.recipes(allthemods => {
input = Item.of('productivebees:bee_cage', '{name: "Bee", entity: "minecraft:bee"}')
input_ii = input.copy()
} else {
input = Item.of('productivebees:bee_cage', 1, '{type:"' + recipe.ingredient + '", entity: "productivebees:configurable_bee", name: "' + makeName(beeType) +'"}')
input_ii = Item.of('productivebees:bee_cage', 1, goodBeeGenes + 'type:"' + recipe.ingredient + '", entity: "productivebees:configurable_bee", name: "' + makeName(beeType) +'"}')
// input = Item.of('productivebees:bee_cage', 1, '{type:"' + recipe.ingredient + '", entity: "productivebees:configurable_bee", name: "' + makeName(beeType) +'"}')
// input_ii = Item.of('productivebees:bee_cage', 1, goodBeeGenes + 'type:"' + recipe.ingredient + '", entity: "productivebees:configurable_bee", name: "' + makeName(beeType) +'"}')
input = Item.of('productivebees:bee_cage', 1, '{type:"' + recipe.ingredient + '", entity: "productivebees:configurable_bee"}')
input_ii = Item.of('productivebees:bee_cage', 1, goodBeeGenes + 'type:"' + recipe.ingredient + '", entity: "productivebees:configurable_bee"}')
}
let results = recipe.results // array of objects like { item: { }, chance: 40 }
let flower
Expand Down

0 comments on commit 26bc209

Please sign in to comment.