Skip to content

Commit

Permalink
Use GT5U Enums (#81)
Browse files Browse the repository at this point in the history
* use GT5U enums

* spotlessApply (#82)

Co-authored-by: GitHub GTNH Actions <>

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
boubou19 and github-actions[bot] authored Aug 31, 2024
1 parent 732ccd3 commit 6d8ec13
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Add your dependencies here

dependencies {
compileOnly 'com.github.GTNewHorizons:GT5-Unofficial:5.09.48.123:dev'
compileOnly 'com.github.GTNewHorizons:GT5-Unofficial:5.09.49.42:dev'
api 'com.github.GTNewHorizons:Baubles:1.0.4:dev'
api 'com.github.GTNewHorizons:ModularUI:1.2.0:dev'
api ('com.github.GTNewHorizons:ThaumicBoots:1.3.7:dev'){
Expand Down
14 changes: 7 additions & 7 deletions src/main/java/emt/gthandler/common/loader/EMT_GT_Loader.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
import net.minecraftforge.oredict.OreDictionary;

import emt.tile.GT_MetaTileEntity_ResearchCompleter;
import emt.util.EMTConfigHandler;
import gregtech.api.enums.GT_Values;
import gregtech.api.enums.ItemList;
import gregtech.api.enums.Materials;
import gregtech.api.enums.MetaTileEntityIDs;
import gregtech.api.enums.OrePrefixes;
import gregtech.api.enums.TierEU;
import gregtech.api.util.GT_OreDictUnificator;
import thaumcraft.common.config.ConfigItems;

public class EMT_GT_Loader {

public static ItemStack ResearchMultiblock;

public static void run() {
ResearchMultiblock = new GT_MetaTileEntity_ResearchCompleter(
EMTConfigHandler.aIDoffset + GT_Values.VN.length + 2,
"Research Completer",
"Research Completer").getStackForm(1L);
ItemList.ResearchCompleter.set(
new GT_MetaTileEntity_ResearchCompleter(
MetaTileEntityIDs.ResearchCompleter.ID,
"Research Completer",
"Research Completer").getStackForm(1L));
}

public static void runlate() {
Expand Down

0 comments on commit 6d8ec13

Please sign in to comment.