Skip to content

Commit

Permalink
Remove bee name requirement from Apiaries
Browse files Browse the repository at this point in the history
  • Loading branch information
loving2 committed Dec 25, 2024
1 parent 3fe4725 commit 76821fc
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 76821fc

Please sign in to comment.