Skip to content

Commit

Permalink
rename (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAPenguin0 authored Sep 3, 2024
1 parent 075ae1b commit 12a9203
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ dependencies {
compileOnly('curse.maven:cofh-lib-220333:2388748')
compileOnly('curse.maven:simply-jetpacks-79325:2267185')
compileOnly('curse.maven:tfcraft-302973:2627990')
compileOnly('com.github.GTNewHorizons:GT5-Unofficial:5.09.49.47:dev')
compileOnly('com.github.GTNewHorizons:GT5-Unofficial:5.09.49.56:dev')
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import com.github.lunatrius.ingameinfo.tag.TagIntegration;
import com.github.lunatrius.ingameinfo.tag.registry.TagRegistry;

import gregtech.common.GT_Worldgenerator;
import gregtech.common.GTWorldgenerator;

public abstract class TagGregtech extends TagIntegration {

Expand All @@ -17,10 +17,10 @@ public static class useNewOregenPattern extends TagGregtech {
@Override
public String getValue() {
try {
if (GT_Worldgenerator.oregenPattern == GT_Worldgenerator.OregenPattern.EQUAL_SPACING) {
if (GTWorldgenerator.oregenPattern == GTWorldgenerator.OregenPattern.EQUAL_SPACING) {
return "true";
}
if (GT_Worldgenerator.oregenPattern == GT_Worldgenerator.OregenPattern.AXISSYMMETRICAL) {
if (GTWorldgenerator.oregenPattern == GTWorldgenerator.OregenPattern.AXISSYMMETRICAL) {
return "false";
}
} catch (Throwable e) {
Expand Down

0 comments on commit 12a9203

Please sign in to comment.