Skip to content

Commit 3a663a4

Browse files
committed
change recipes scanner items
1 parent 4061aa5 commit 3a663a4

2 files changed

Lines changed: 6 additions & 10 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ dependencies {
3434
api("space.impact:Forgelin:2.0.3")
3535
api("space.impact:gregtech-impact:5.09.35.25:dev")
3636
api("net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev")
37-
api("space.impact:Impact-core:1.1.0.21:dev")
38-
api("space.impact:VirtualWorld:1.4.2:dev")
37+
api("space.impact:Impact-core:1.1.0.24:dev")
3938
api("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-307-GTNH:dev")
4039

4140
implementation(fileTree(mapOf("dir" to "libRun/", "include" to listOf("*.jar"))))

src/main/java/com/impactrecipes/recipes/Impact.kt

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.impactrecipes.recipes
22

33
import com.impact.common.item.DrillHeads
4+
import com.impact.mods.gregtech.GT_ItemList
45
import com.impactrecipes.util.get
56
import com.impactrecipes.util.toEuPercent
67
import gregtech.api.enums.GT_Values.RA
@@ -41,9 +42,8 @@ object Impact {
4142
}
4243

4344
private fun prospectors() {
44-
var scannerTool = GT_ModHandler.getModItem("impact_vw", "virtual_ore_scanner", 1L, 0)
4545
GT_ModHandler.addCraftingRecipe(
46-
scannerTool,
46+
GT_ItemList.HandProspectorEV.get(1),
4747
GT_ModHandler.RecipeBits.DISMANTLEABLE or GT_ModHandler.RecipeBits.DO_NOT_CHECK_FOR_COLLISIONS or GT_ModHandler.RecipeBits.BUFFERED,
4848
arrayOf<Any?>(
4949
"EHR", "CSC", "PBP",
@@ -57,9 +57,8 @@ object Impact {
5757
)
5858
)
5959

60-
scannerTool = GT_ModHandler.getModItem("impact_vw", "virtual_ore_scanner", 1L, 1)
6160
GT_ModHandler.addCraftingRecipe(
62-
scannerTool,
61+
GT_ItemList.HandProspectorIV.get(1),
6362
GT_ModHandler.RecipeBits.DISMANTLEABLE or GT_ModHandler.RecipeBits.DO_NOT_CHECK_FOR_COLLISIONS or GT_ModHandler.RecipeBits.BUFFERED,
6463
arrayOf<Any?>(
6564
"EHR", "CSC", "PBP",
@@ -73,9 +72,8 @@ object Impact {
7372
)
7473
)
7574

76-
scannerTool = GT_ModHandler.getModItem("impact_vw", "virtual_ore_scanner", 1L, 2)
7775
GT_ModHandler.addCraftingRecipe(
78-
scannerTool,
76+
GT_ItemList.HandProspectorLuV.get(1),
7977
GT_ModHandler.RecipeBits.DISMANTLEABLE or GT_ModHandler.RecipeBits.DO_NOT_CHECK_FOR_COLLISIONS or GT_ModHandler.RecipeBits.BUFFERED,
8078
arrayOf<Any?>(
8179
"EHR", "CSC", "PBP",
@@ -89,9 +87,8 @@ object Impact {
8987
)
9088
)
9189

92-
scannerTool = GT_ModHandler.getModItem("impact_vw", "virtual_ore_scanner", 1L, 3)
9390
GT_ModHandler.addCraftingRecipe(
94-
scannerTool,
91+
GT_ItemList.HandProspectorZPM.get(1),
9592
GT_ModHandler.RecipeBits.DISMANTLEABLE or GT_ModHandler.RecipeBits.DO_NOT_CHECK_FOR_COLLISIONS or GT_ModHandler.RecipeBits.BUFFERED,
9693
arrayOf<Any?>(
9794
"EHR", "CSC", "PBP",

0 commit comments

Comments
 (0)