Skip to content

Commit

Permalink
marble fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BinBashBanana committed Nov 12, 2023
1 parent 8e91be7 commit ea651fb
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/unlimitedchiselworks.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ enabled {
B:"appliedenergistics2:quartz_block"=false
B:"appliedenergistics2:sky_stone_brick"=false
B:"astralsorcery:blockblackmarble"=true
B:"astralsorcery:blockmarble"=true
B:"astralsorcery:blockmarble"=false
B:"biomesoplenty:dirt"=true
B:"biomesoplenty:planks_0"=true
B:"biomesoplenty:white_sandstone"=false
Expand Down
15 changes: 15 additions & 0 deletions scripts/MiscRecipes.zs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,21 @@ import mods.jei.JEI.removeAndHide as rh;
# Readding Bread recipe to make Minecolony Bakers happy
recipes.addShaped("Bread", <minecraft:bread>, [[<ore:listAllgrain>, <ore:listAllgrain>, <ore:listAllgrain>]]);

# Project Red Marble Brick
recipes.remove(<projectred-exploration:stone:1>);
recipes.addShaped("Project Red Marble Brick",
<projectred-exploration:stone:1> * 4,
[[<ore:stoneMarble>, null, <ore:stoneMarble>],
[<ore:stoneMarble>, null, <ore:stoneMarble>]]);

# Project Red Marble Wall
recipes.remove(<projectred-exploration:stone_wall:0>);
recipes.addShaped("Project Red Marble Wall",
<projectred-exploration:stone_wall:0> * 6,
[[null, <ore:stoneMarble>, null],
[<ore:stoneMarble>, <ore:stoneMarble>, <ore:stoneMarble>],
[<ore:stoneMarble>, null, <ore:stoneMarble>]]);

# Quark Marble Wall Oredicted version
recipes.remove(<quark:marble_wall>);
recipes.addShaped("Quark Marble Wall",
Expand Down
2 changes: 1 addition & 1 deletion scripts/OreDict.zs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ import crafttweaker.item.IItemStack as IItemStack;
# *======= Assorted OreDictionary =======*

#Marble
stonemarblepolished.add(<astralsorcery:blockmarble>);
stonemarblepolished.add(<astralsorcery:blockmarble:0>);
stonemarblepolished.add(<astralsorcery:blockmarble:1>);
stonemarblepolished.add(<astralsorcery:blockmarble:2>);
stonemarblepolished.add(<astralsorcery:blockmarble:3>);
Expand Down

0 comments on commit ea651fb

Please sign in to comment.