Skip to content

Commit

Permalink
update the mod to work with GT 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
screret committed Apr 10, 2024
1 parent a7c573f commit 9715820
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 15 deletions.
12 changes: 2 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
### ADDITIONS:
- venus
- mars
- added ability to fill up space suit
- added ability to make any armor piece a space suit via custom smithing template
- added possible rocket speed to rocket GUI

### FIXES:
- fixed T1 rocket part recipes
- fixed rocket takeoff & landing being a buggy mess
- fixed space suit not working
- updated the mod to work with GTCEuM 1.2.0
- new recipes coming soon:tm:

### CHANGES:
- updated to GTCEu 1.1.4.b
- updated ja_jp lang
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx4G -Xss4M

mod_id=gcyr
mod_name=Gregicality Rocketry
mod_version=0.1.4
mod_version=0.1.5
maven_group=argent_matter

loom.platform=forge
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ dependencyResolutionManagement {
def vineFlowerVersion = "1.+"
def macheteVersion = "1.+"
def configurationVersion = "2.2.0"
def gtCeuVersion = "1.1.4.a"
def ldLibVersion = "1.0.24.b"
def gtCeuVersion = "1.2.0"
def ldLibVersion = "1.0.25.c"
def mixinExtrasVersion = "0.2.0"
def mixinVersion = "0.8.6-SNAPSHOT"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ public class GCyRRecipeTypes {
public static final GTRecipeType DYSON_ENERGY_RECIPES = register("dyson_controller", MULTIBLOCK)
.setMaxIOSize(8, 0, 0, 0).setEUIO(IO.BOTH)
.setProgressBar(GuiTextures.PROGRESS_BAR_ARROW_MULTIPLE, LEFT_TO_RIGHT)
.setSound(GTSoundEntries.TRICORDER_TOOL);
.setSound(GTSoundEntries.PORTABLE_SCANNER);

public static final GTRecipeType SPACE_ELEVATOR_RECIPES = register("space_elevator", MULTIBLOCK).setMaxIOSize(16, 1, 4, 0).setEUIO(IO.IN)
.setProgressBar(GCyRGuiTextures.PROGRESS_BAR_ROCKET, LEFT_TO_RIGHT)
.setSound(GTSoundEntries.TRICORDER_TOOL);
.setSound(GTSoundEntries.PORTABLE_SCANNER);

public static final GTRecipeType ROCKET_FUEL_RECIPES = register("rocket_fuel", MULTIBLOCK).setMaxIOSize(0, 0, 1, 0).setEUIO(IO.IN)
.setProgressBar(GCyRGuiTextures.PROGRESS_BAR_ROCKET, LEFT_TO_RIGHT)
Expand Down

0 comments on commit 9715820

Please sign in to comment.