Skip to content

Commit

Permalink
Merge pull request #1013 from MCTian-mi/bug-fixes
Browse files Browse the repository at this point in the history
Fix some quest issues in 1.1.13
  • Loading branch information
MCTian-mi authored Oct 11, 2024
2 parents b358484 + 3c88583 commit c4dfcf3
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 1,827 deletions.
5 changes: 3 additions & 2 deletions config/betterquesting/DefaultQuests/Quests/0/1602093300.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
"requiredItems:9": {
"0:10": {
"Count:3": 8,
"Damage:2": 1,
"id:8": "pyrotech:material"
"Damage:2": 319,
"OreDict:8": "fuelCoke",
"id:8": "gregtech:meta_gem"
}
},
"taskID:8": "bq_standard:retrieval"
Expand Down
1 change: 1 addition & 0 deletions config/betterquesting/DefaultQuests/Quests/0/5.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"tasks:9": {
"0:10": {
"entryLogic:8": "AND",
"ignoreNBT:1": 1,
"partialMatch:1": 1,
"requiredItems:9": {
"0:10": {
Expand Down
3 changes: 2 additions & 1 deletion config/betterquesting/DefaultQuests/Quests/1/668.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"tasks:9": {
"0:10": {
"entryLogic:8": "AND",
"ignoreNBT:1": 1,
"partialMatch:1": 1,
"requiredItems:9": {
"0:10": {
Expand All @@ -44,7 +45,7 @@
"Durability:3": 0,
"HarvestLevel:3": 1,
"Material:8": "rubber",
"MaxDurability:3": 256,
"MaxDurability:3": 255,
"ToolSpeed:5": 4.0
},
"HideFlags:3": 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"tasks:9": {
"0:10": {
"entryLogic:8": "AND",
"ignoreNBT:1": 1,
"partialMatch:1": 1,
"requiredItems:9": {
"0:10": {
Expand Down
1,821 changes: 0 additions & 1,821 deletions config/betterquesting/resources/supersymmetry/lang/zh_cn.lang

This file was deleted.

2 changes: 1 addition & 1 deletion groovy/postInit/gameplay/FiniteWater.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import net.minecraftforge.fml.common.eventhandler.Event;
event_manager.listen { BlockEvent.CreateFluidSourceEvent event ->
World world = event.getWorld();
BlockPos pos = event.getPos();
if (pos.getY() > 63) {
if (pos.getY() > 62) {
event.setResult(Event.Result.DENY);
return;
}
Expand Down
8 changes: 8 additions & 0 deletions groovy/postInit/gameplay/StartingAge.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ for (item in name_removals) {
crafting.remove(item);
}

mods.jei.ingredient.yeet(
item('minecraft:stone_sword'),
item('minecraft:stone_shovel'),
item('minecraft:stone_pickaxe'),
item('minecraft:stone_axe'),
item('minecraft:stone_hoe')
)

crafting.replaceShapeless("gregtech:clay_ball_to_dust", metaitem('dustClay'), [
ore('craftingToolMortar'),
ore('ingotClay')
Expand Down
5 changes: 5 additions & 0 deletions groovy/postInit/mod/Pyrotech.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ def name_removals = [
"pyrotech:bread_dough",
"pyrotech:straw_bed",
"pyrotech:clay",
"pyrotech:stone_sword",
"pyrotech:stone_shovel",
"pyrotech:stone_pickaxe",
"pyrotech:stone_axe",
"pyrotech:stone_hoe",
"pyrotech:cobbled_limestone",
"pyrotech:cobbled_andesite",
"pyrotech:cobbled_diorite",
Expand Down
2 changes: 1 addition & 1 deletion groovy/postInit/mod/TravelersBackpack.groovy
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Recipe for the default backpack
crafting.replaceShaped('travelersbackpack:travelers_backpack_standard', item('travelersbackpack:travelers_backpack'), [
[item('techguns:itemshared', 77), metaitem('workbench'), item('techguns:itemshared', 77)],
[metaitem('large_fluid_cell.steel'), item('minecraft:chest'), metaitem('large_fluid_cell.steel')],
[metaitem('large_fluid_cell.steel').or(item('gregtech:machine', 1612)), item('minecraft:chest'), metaitem('large_fluid_cell.steel').or(item('gregtech:machine', 1612))],
[item('techguns:itemshared', 77), ore('wool'), item('techguns:itemshared', 77)]
])
5 changes: 5 additions & 0 deletions groovy/postInit/mod/VanillaRecipes.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ def recipesToRemove = [
'quark:gravisand',
'quark:ender_watcher',
'quark:redstone_inductor',
'minecraft:stone_sword',
'minecraft:stone_shovel',
'minecraft:stone_pickaxe',
'minecraft:stone_axe',
'minecraft:stone_hoe',
'minecraft:fermented_spider_eye',
'minecraft:speckled_melon',
'minecraft:magma_cream',
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
},
{
"projectID": 629629,
"fileID": 5487266,
"fileID": 5802573,
"required": true
},
{
Expand Down

0 comments on commit c4dfcf3

Please sign in to comment.