Skip to content

Commit

Permalink
Merge pull request #742 from NillerMedDild/develop
Browse files Browse the repository at this point in the history
Update 0.3.4 Hotfix
  • Loading branch information
NielsPilgaard authored Jan 4, 2021
2 parents 33c44bf + c83c56d commit 6cf6832
Show file tree
Hide file tree
Showing 7 changed files with 1,757 additions and 1,727 deletions.
4 changes: 2 additions & 2 deletions config/ars_nouveau-common.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
launch = true
#Dispel enabled?
dispel = true
#Haste enabled?
#Speed enabled?
haste = true
#Access Ender Inventory enabled?
ender_inventory = true
Expand Down Expand Up @@ -166,7 +166,7 @@

#Spell Cost
[spell_cost]
#Haste cost
#Speed cost
#Range: > -2147483648
haste_cost = 30
#Summon Vex cost
Expand Down
13 changes: 13 additions & 0 deletions config/jaopca/materials/arcane_gold.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

[general]
#The alternative names of this material.
alternativeNames = []
#The byproducts of this material.
extras = []
#The module blacklist of this material.
moduleBlacklist = []
#Should items of this material have the enchanted glow.
hasEffect = false
#The model type of the material.
modelType = "metallic"

13 changes: 13 additions & 0 deletions config/jaopca/materials/pewter.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

[general]
#The alternative names of this material.
alternativeNames = []
#The byproducts of this material.
extras = []
#The module blacklist of this material.
moduleBlacklist = []
#Should items of this material have the enchanted glow.
hasEffect = false
#The model type of the material.
modelType = "metallic"

3 changes: 2 additions & 1 deletion config/jei/ingredient-list-mod-sort-order.ini
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ Alex's Mobs
KubeJS
Create
Immersive Petroleum
Portable Stonecutter
Eidolon
Occultism
Paraglider
JAOPCA
Portable Stone Cutter
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ events.listen('recipes', function (event) {
]);

var wool = 'minecraft:' + colors[i] + '_wool';
event.remove({ id: 'minecraft:' + colors[i] + '_carpet_from_white_carpet' });
event.remove({
id: 'minecraft:' + colors[i] + '_carpet_from_white_carpet'
});
event.shaped({ item: 'minecraft:' + colors[i] + '_carpet', count: 3 }, ['WW'], {
W: wool
});
Expand All @@ -62,7 +64,7 @@ events.listen('recipes', function (event) {

event.replaceInput({}, 'refinedstorage:silicon', '#forge:silicon');

event.replaceInput({}, 'astralsorcery:marble_raw', '#forge:stones/marble');
event.replaceInput({ mod: 'astralsorcery' }, 'astralsorcery:marble_raw', '#forge:stones/marble');

event.replaceInput({}, 'thermal:cinnabar', '#forge:gems/cinnabar');
event.replaceInput({}, 'thermal:sulfur', '#forge:gems/sulfur');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ events.listen('recipes', function (event) {
'biomesoplenty:withered_abyss'
];

//var nether_end_biomes = end_biomes.concat(nether_biomes);

event.remove({ id: 'industrialforegoing:laser_drill_ore/sapphire' });
event.remove({ id: 'industrialforegoing:laser_drill_ore/ruby' });
event.remove({ id: 'industrialforegoing:laser_drill_ore/niter' });
Expand Down Expand Up @@ -761,11 +763,11 @@ events.listen('recipes', function (event) {
},
rarity: [
{
whitelist: {
whitelist: {},
blacklist: {
type: 'minecraft:worldgen/biome',
values: nether_biomes
values: end_biomes
},
blacklist: {},
depth_min: 5,
depth_max: 29,
weight: 5
Expand Down
Loading

0 comments on commit 6cf6832

Please sign in to comment.