-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ra2-space-miner
- Loading branch information
Showing
17 changed files
with
116 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
dependencies { | ||
api('com.github.GTNewHorizons:GT5-Unofficial:5.09.50.68:dev') | ||
api('com.github.GTNewHorizons:Galaxy-Space-GTNH:1.1.96-GTNH:dev') | ||
api('com.github.GTNewHorizons:GTNHLib:0.5.20:dev') | ||
compileOnly("com.github.GTNewHorizons:Hodgepodge:2.5.78:dev") {transitive = false} | ||
api('com.github.GTNewHorizons:GT5-Unofficial:5.09.50.93:dev') | ||
api('com.github.GTNewHorizons:Galaxy-Space-GTNH:1.1.97-GTNH:dev') | ||
api('com.github.GTNewHorizons:GTNHLib:0.5.21:dev') | ||
compileOnly('com.github.GTNewHorizons:BlockRenderer6343:1.2.15:dev') {transitive = false} | ||
compileOnly("com.github.GTNewHorizons:Hodgepodge:2.5.82:dev") {transitive = false} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
185 changes: 0 additions & 185 deletions
185
src/main/java/com/gtnewhorizons/gtnhintergalactic/client/lore/LoreHandler.java
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
src/main/java/com/gtnewhorizons/gtnhintergalactic/client/lore/LoreHolder.java
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
src/main/java/com/gtnewhorizons/gtnhintergalactic/config/Config.java
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
src/main/java/com/gtnewhorizons/gtnhintergalactic/config/IGConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.gtnewhorizons.gtnhintergalactic.config; | ||
|
||
import com.gtnewhorizon.gtnhlib.config.Config; | ||
|
||
import gregtech.api.enums.Mods; | ||
|
||
@Config(modid = Mods.Names.G_T_N_H_INTERGALACTIC, filename = "gtnhintergalactic") | ||
public class IGConfig { | ||
|
||
public static SpaceElevator spaceElevator = new SpaceElevator(); | ||
|
||
@Config.Comment("Space Elevator section") | ||
public static class SpaceElevator { | ||
|
||
@Config.Comment("If true, the Space Elevator will use it's fancy renderer, otherwise a simple block renderer") | ||
@Config.DefaultBoolean(true) | ||
public boolean isCableRenderingEnabled; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.