Skip to content

Commit

Permalink
fix: a few broken recipes for extra planet things
Browse files Browse the repository at this point in the history
fixes #2575
  • Loading branch information
artdude543 committed May 22, 2018
1 parent 647d7e7 commit bddb6b8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/config/mputils/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ Bug Fixes:
* Fixed Blood Magic bound tools being able to break in some situations
* Hopefully fix the spawn rate for Imps (#1910)
* Fixed Wither Skulls not craftable with withering souls (#2564)
* Fixed invalid recipe for a few Extra Planet things (#2575)

Enhancements:
* Add dying recipes for the Twilight Forest Castle Doors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@
mods.GalacticraftTweaker.removeCompressorRecipe(<galacticraftcore:basic_item:9>);
// Add the correct steel recipe back.
mods.GalacticraftTweaker.addCompressorShapelessRecipe(<galacticraftcore:basic_item:9>, <immersiveengineering:metal:8>, <immersiveengineering:metal:8>);

// Remove the compressed nickle plate recipe.
mods.GalacticraftTweaker.removeCompressorRecipe(<extraplanets:tier5_items:6>);
// Add back one which is using the correct ingot.
mods.GalacticraftTweaker.addCompressorShapelessRecipe(<extraplanets:tier5_items:6>, metals.nickel.ingot.firstItem, metals.nickel.ingot.firstItem);
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,13 @@ var shapedRecipes as IIngredient[][][][IItemStack] = {
],

//Extra Planets
<extraplanets:advanced_fuel_loader>: [
[
[metals.nickel.ingot, metals.nickel.ingot, metals.nickel.ingot],
[metals.nickel.ingot, <galacticraftcore:fuel_loader>, metals.nickel.ingot],
[<extraplanets:tier5_items:5>, <extraplanets:tier5_items:8>, <extraplanets:tier5_items:5>]
]
],
<extraplanets:fire_bomb>: [
[
[metals.uranium.ingot, <extraplanets:tier5_items:10>, metals.uranium.ingot],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ var removeItems as IItemStack[] = [
<galacticraftcore:machine2:8>,

//Extra Planets
<extraplanets:advanced_fuel_loader>,
<extraplanets:fire_bomb>,
<extraplanets:nuclear_bomb>,
<extraplanets:tier1_space_suit_gravity_boots>,
Expand Down

0 comments on commit bddb6b8

Please sign in to comment.