Skip to content

Commit e96af9d

Browse files
committed
Merge commit '37b82d5c56fbf91ef88bce6bdb3bc39668a93fca' into 2.9
2 parents ae27c50 + 37b82d5 commit e96af9d

16 files changed

Lines changed: 2388 additions & 2366 deletions

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ jobs:
9191
mixin-booter(required)
9292
gregtech-ce-unofficial(required)
9393
gregicality-multiblocks(required)
94+
implosionnobomb(recommended)
9495
ae2-extended-life(recommended)
9596
ae-additions-extra-cells-2-fork(recommended)
9697
nae2(recommended)

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# v2.3.1
2+
- Hotfix a mistake when splitting into INBs [#296](https://github.com/GTModpackTeam/GTExpert-Core/pull/296)
3+
4+
* * *
5+
16
# v2.3.0
27
- Separate Electric Implosion Compressor changes to [ImplosionNoBomb](https://www.curseforge.com/minecraft/mc-mods/implosionnobomb)
38
- Thanks to @MrKono for his support!!

dependencies.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ dependencies {
5959
devOnlyNonPublishable(rfg.deobf("curse.maven:ae2-extended-life-570458:5411078")) // AE2UEL 0.56.6
6060
}
6161

62+
// Debug ImplosionNoBomb
63+
compileOnly rfg.deobf("curse.maven:implosionnobomb-1094386:5680426") // ImplosionNoBomb 1.0.0
64+
if (project.debug_all.toBoolean() || project.debug_inb.toBoolean()) {
65+
runtimeOnlyNonPublishable rfg.deobf("curse.maven:implosionnobomb-1094386:5680426")
66+
}
67+
6268
// Debug AE Additions
6369
if (project.debug_all.toBoolean() || project.debug_aea.toBoolean()) {
6470
runtimeOnlyNonPublishable rfg.deobf("curse.maven:ae-additions-extra-cells-2-fork-493962:3814371") // AEAdditions 1.3.8

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ modGroup = gtexpert
77

88
# Version of your mod.
99
# This field can be left empty if you want your mod's version to be determined by the latest git tag instead.
10-
modVersion = 2.3.0-beta
10+
modVersion = 2.3.1-beta
1111

1212
# Whether to use the old jar naming structure (modid-mcversion-version) instead of the new version (modid-version)
1313
includeMCVersionJar = true
@@ -27,6 +27,7 @@ useAE2uelExtended = false
2727

2828
# Debug mod compatibility
2929
debug_all = false
30+
debug_inb = false
3031
debug_aea = false
3132
debug_nae2 = false
3233
debug_extracpus = false

0 commit comments

Comments
 (0)