Skip to content

Commit

Permalink
fix cf build
Browse files Browse the repository at this point in the history
  • Loading branch information
tier940 committed Oct 27, 2023
1 parent fe984fa commit b817d7b
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Archive Release CF
run: |
zip -r ./${{ env.NAME }}-${{ env.FULL_VERSION }}-cf.zip ./manifest.json ./modlist.html ./manifest.json ./modlist.html ./overrides/config/ ./overrides/scripts/
zip -r ./${{ env.NAME }}-${{ env.FULL_VERSION }}-cf.zip ./manifest.json ./modlist.html ./manifest.json ./modlist.html ./overrides/config/ ./overrides/mods/ ./overrides/scripts/
- name: Setup Python
uses: actions/setup-python@v4
Expand Down
7 changes: 6 additions & 1 deletion overrides/config/jadedlibs.json
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
[]
[
{
"repo": "https://github.com/GTNewHorizons/Minetweaker-Gregtech-5-Addon/releases/download/2.0.2/GTTweaker-2.0.2.jar",
"file": "GTTweaker-2.0.2.jar"
}
]
Binary file removed overrides/mods/GTTweaker-1.7.10-1.7.5.jar
Binary file not shown.
19 changes: 19 additions & 0 deletions overrides/scripts/GraviSuite.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//Created by sjcl



// --- Variables
var itemArmorJetpackElectric = <IC2:itemArmorJetpackElectric>.anyDamage();
var advLappack = <GraviSuite:advLappack>.anyDamage();


// --- Removing Recipes
recipes.remove(<GraviSuite:advJetpack>);


// --- Adding Recipes
recipes.addShaped(<GraviSuite:advJetpack>, [
[<IC2:itemPartCarbonPlate>, itemArmorJetpackElectric, <IC2:itemPartCarbonPlate>],
[<GraviSuite:itemSimpleItem:6>, advLappack, <GraviSuite:itemSimpleItem:6>],
[<gregtech:gt.blockmachines:1642>, <ore:circuitAdvanced>, <gregtech:gt.blockmachines:1642>]
]);

0 comments on commit b817d7b

Please sign in to comment.