Skip to content

Commit

Permalink
Add chisel for knightmetal blocks (#768)
Browse files Browse the repository at this point in the history
* add chisel for knightmetal block

* ensure dep
  • Loading branch information
chochem authored Dec 3, 2023
1 parent 4923f6c commit b62ca7f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/main/java/com/dreammaster/scripts/ScriptChisel.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import static gregtech.api.enums.Mods.ProjectRedExploration;
import static gregtech.api.enums.Mods.Railcraft;
import static gregtech.api.enums.Mods.TinkerConstruct;
import static gregtech.api.enums.Mods.TwilightForest;
import static gregtech.api.util.GT_ModHandler.getModItem;

import java.util.Arrays;
Expand Down Expand Up @@ -45,7 +46,8 @@ public List<String> getDependencies() {
IronChests.ID,
Natura.ID,
Railcraft.ID,
TinkerConstruct.ID);
TinkerConstruct.ID,
TwilightForest.ID);
}

@Override
Expand Down Expand Up @@ -576,5 +578,11 @@ public void loadRecipes() {
ChiselHelper.addGroup("blazeblock");
ChiselHelper.addVariationFromStack("blazeblock", getModItem(Botania.ID, "blazeBlock", 1, 0, missing));
ChiselHelper.addVariationFromStack("blazeblock", getModItem(GregTech.ID, "gt.blockgem3", 1, 5, missing));
ChiselHelper.addGroup("knightmetalblock");
ChiselHelper.addVariationFromStack(
"knightmetalblock",
getModItem(TwilightForest.ID, "tile.KnightmetalBlock", 1, 0, missing));
ChiselHelper
.addVariationFromStack("knightmetalblock", getModItem(GregTech.ID, "gt.blockmetal4", 1, 0, missing));
}
}

0 comments on commit b62ca7f

Please sign in to comment.