Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add RawOre to the OreProccessing Page #30

Merged
merged 16 commits into from
May 22, 2024
10 changes: 5 additions & 5 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ dependencies {
compileOnly('com.google.auto.value:auto-value-annotations:1.8.2')
annotationProcessor('com.google.auto.value:auto-value:1.8.2')

api('com.github.GTNewHorizons:NotEnoughItems:2.5.4-GTNH:dev')
api('com.github.GTNewHorizons:NotEnoughItems:2.5.24-GTNH:dev')

api('com.github.GTNewHorizons:DetravScannerMod:1.8.0:dev') {transitive=false}
api('com.github.GTNewHorizons:EnderStorage:1.5.0:dev') {transitive=false}
api('com.github.GTNewHorizons:GT5-Unofficial:5.09.45.25:dev')
api('com.github.GTNewHorizons:GTplusplus:1.11.13:dev')
api('com.github.GTNewHorizons:NewHorizonsCoreMod:2.3.11:dev')
api('com.github.GTNewHorizons:bartworks:0.9.4:dev')
api('com.github.GTNewHorizons:GT5-Unofficial:5.09.45.96-pre:dev')
api('com.github.GTNewHorizons:GTplusplus:1.11.33:dev')
api('com.github.GTNewHorizons:NewHorizonsCoreMod:2.3.38:dev')
api('com.github.GTNewHorizons:bartworks:0.9.17:dev')
}
9 changes: 5 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ channel = stable
mappingsVersion = 12

# Defines other MCP mappings for dependency deobfuscation.
remoteMappings = https://raw.githubusercontent.com/MinecraftForge/FML/1.7.10/conf/
remoteMappings = https\://raw.githubusercontent.com/MinecraftForge/FML/1.7.10/conf/

# Select a default username for testing your mod. You can always override this per-run by running
# `./gradlew runClient --username=AnotherPlayer`, or configuring this command in your IDE.
Expand Down Expand Up @@ -61,6 +61,9 @@ gradleTokenModId =
# [DEPRECATED] Mod name replacement token.
gradleTokenModName =

# [DEPRECATED] Mod Group replacement token.
gradleTokenGroupName =

# [DEPRECATED]
# Multiple source files can be defined here by providing a comma-separated list: Class1.java,Class2.java,Class3.java
# public static final String VERSION = "GRADLETOKEN_VERSION";
Expand Down Expand Up @@ -123,7 +126,7 @@ includeWellKnownRepositories = true
usesMavenPublishing = true

# Maven repository to publish the mod to.
# mavenPublishUrl = https://nexus.gtnewhorizons.com/repository/releases/
# mavenPublishUrl = https\://nexus.gtnewhorizons.com/repository/releases/

# Publishing to Modrinth requires you to set the MODRINTH_TOKEN environment variable to your current Modrinth API token.
#
Expand Down Expand Up @@ -187,5 +190,3 @@ customArchiveBaseName = NEICustomDiagram
# This is meant to be set in $HOME/.gradle/gradle.properties.
# ideaCheckSpotlessOnBuild = true

# Non-GTNH properties
gradleTokenGroupName =
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pluginManagement {
}

plugins {
id 'com.gtnewhorizons.gtnhsettingsconvention' version '1.0.8'
id 'com.gtnewhorizons.gtnhsettingsconvention' version '1.0.16'
}


Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public final class GregTechOreProcessing implements DiagramGenerator {
OrePrefixes.oreSmall,
OrePrefixes.orePoor,
OrePrefixes.oreEndstone,
OrePrefixes.oreEnd);
OrePrefixes.oreEnd,
OrePrefixes.rawOre);
Ethryan marked this conversation as resolved.
Show resolved Hide resolved

private final DiagramGroupInfo info;

Expand Down
Loading