Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Commit

Permalink
Fix HTGR not allowing insertion of coolant (#378)
Browse files Browse the repository at this point in the history
* Fix HTGR not allowing insertion of coolant

* Fix TGregworks dep

Former-commit-id: 02b361a8871c41cddffd00ebf267b5bbd5427b07
  • Loading branch information
miozune authored Dec 12, 2023
1 parent 2cb18de commit a5c87c6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Add your dependencies here

dependencies {
api('com.github.GTNewHorizons:GT5-Unofficial:5.09.44.98:dev')
api('com.github.GTNewHorizons:GT5-Unofficial:5.09.44.106:dev')
api("com.github.GTNewHorizons:TecTech:5.3.20:dev")
api("com.github.GTNewHorizons:GalacticGregGT5:1.0.10:dev") {
exclude group:"com.github.GTNewHorizons", module:"bartworks"
}
api("com.github.GTNewHorizons:Avaritia:1.46:dev")
implementation("com.github.GTNewHorizons:TinkersConstruct:1.10.12-GTNH:dev")

compileOnly("com.github.GTNewHorizons:TinkersGregworks:GTNH-1.0.25-pre:dev") {transitive = false}
compileOnly("TGregworks:TGregworks:1.7.10-GTNH-1.0.24:deobf") {transitive = false}
compileOnly("com.github.GTNewHorizons:OpenComputers:1.9.19-GTNH:api") {transitive = false}
}
12 changes: 12 additions & 0 deletions repositories.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
// Add any additional repositories for your dependencies here

repositories {
ivy {
url 'https://files.vexatos.com/'
patternLayout {
artifact "[module]/[artifact]-[revision](-[classifier])(.[ext])"
}
content {
includeGroup("TGregworks")
}
metadataSources {
artifact()
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,11 @@ public RecipeMap<?> getRecipeMap() {
return BartWorksRecipeMaps.htgrFakeRecipes;
}

@Override
protected boolean filtersFluid() {
return false;
}

@Override
public boolean checkRecipe(ItemStack controllerStack) {

Expand Down

0 comments on commit a5c87c6

Please sign in to comment.