Skip to content
This repository was archived by the owner on Sep 17, 2022. It is now read-only.

Commit 313b3a2

Browse files
authored
Merge pull request #74 from Irgendwer01/master
1.9
2 parents 1f60ecd + d1397a0 commit 313b3a2

19 files changed

Lines changed: 5226 additions & 3210 deletions

config/AppliedEnergistics2/AppliedEnergistics2.cfg

Lines changed: 103 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,107 @@ battery {
1515
}
1616

1717

18+
##########################################################################################################
19+
# blockingmode
20+
#--------------------------------------------------------------------------------------------------------#
21+
# Map of items to not block when blockingmode is enabled.
22+
# [modid]
23+
# modid:item:metadata(optional,default:0)
24+
# Supports more than one modid, so you can block different things between, for example, gregtech or enderio
25+
##########################################################################################################
26+
27+
blockingmode {
28+
# NonBlockingItems
29+
S:nonBlockingItems <
30+
[gregtech|actuallyadditions]
31+
gregtech:circuit.integrated
32+
gregtech:shape.mold.plate
33+
gregtech:shape.mold.gear
34+
gregtech:shape.mold.credit
35+
gregtech:shape.mold.bottle
36+
gregtech:shape.mold.ingot
37+
gregtech:shape.mold.ball
38+
gregtech:shape.mold.block
39+
gregtech:shape.mold.nugget
40+
gregtech:shape.mold.cylinder
41+
gregtech:shape.mold.anvil
42+
gregtech:shape.mold.name
43+
gregtech:shape.mold.gear.small
44+
gregtech:shape.mold.rotor
45+
gregtech:shape.extruder.plate
46+
gregtech:shape.extruder.rod
47+
gregtech:shape.extruder.bolt
48+
gregtech:shape.extruder.ring
49+
gregtech:shape.extruder.cell
50+
gregtech:shape.extruder.ingot
51+
gregtech:shape.extruder.wire
52+
gregtech:shape.extruder.pipe.tiny
53+
gregtech:shape.extruder.pipe.small
54+
gregtech:shape.extruder.pipe.medium
55+
gregtech:shape.extruder.pipe.normal
56+
gregtech:shape.extruder.pipe.large
57+
gregtech:shape.extruder.pipe.huge
58+
gregtech:shape.extruder.block
59+
gregtech:shape.extruder.sword
60+
gregtech:shape.extruder.pickaxe
61+
gregtech:shape.extruder.shovel
62+
gregtech:shape.extruder.axe
63+
gregtech:shape.extruder.hoe
64+
gregtech:shape.extruder.hammer
65+
gregtech:shape.extruder.file
66+
gregtech:shape.extruder.saw
67+
gregtech:shape.extruder.gear
68+
gregtech:shape.extruder.bottle
69+
gregtech:shape.extruder.foil
70+
gregtech:shape.extruder.gear_small
71+
gregtech:shape.extruder.rod_long
72+
gregtech:shape.extruder.rotor
73+
gregtech:glass_lens.white
74+
gregtech:glass_lens.orange
75+
gregtech:glass_lens.magenta
76+
gregtech:glass_lens.light_blue
77+
gregtech:glass_lens.yellow
78+
gregtech:glass_lens.lime
79+
gregtech:glass_lens.pink
80+
gregtech:glass_lens.gray
81+
gregtech:glass_lens.light_gray
82+
gregtech:glass_lens.cyan
83+
gregtech:glass_lens.purple
84+
gregtech:glass_lens.blue
85+
gregtech:glass_lens.brown
86+
gregtech:glass_lens.green
87+
gregtech:glass_lens.red
88+
gregtech:glass_lens.black
89+
contenttweaker:smallgearextrudershape
90+
contenttweaker:creativeportabletankmold
91+
ore:lensAlmandine
92+
ore:lensBlueTopaz
93+
ore:lensDiamond
94+
ore:lensEmerald
95+
ore:lensGreenSapphire
96+
ore:lensRutile
97+
ore:lensRuby
98+
ore:lensSapphire
99+
ore:lensTopaz
100+
ore:lensJasper
101+
ore:lensGlass
102+
ore:lensOlivine
103+
ore:lensOpal
104+
ore:lensAmethyst
105+
ore:lensLapis
106+
ore:lensEnderPearl
107+
ore:lensEnderEye
108+
ore:lensGarnetRed
109+
ore:lensGarnetYellow
110+
ore:lensVinteum
111+
ore:lensNetherStar
112+
>
113+
}
114+
115+
18116
client {
19-
# Possible Values: AE, EU, RF
20-
S:PowerUnit=AE
117+
# Possible Values: AE, EU, RF, GTEU
118+
S:PowerUnit=GTEU
21119

22120
# Possible Values: AUTOSEARCH, AUTOSEARCH_KEEP, MANUAL_SEARCH, MANUAL_SEARCH_KEEP, JEI_AUTOSEARCH, JEI_AUTOSEARCH_KEEP, JEI_MANUAL_SEARCH, JEI_MANUAL_SEARCH_KEEP
23121
S:SEARCH_MODE=AUTOSEARCH
@@ -206,6 +304,7 @@ features {
206304
B:P2PTunnelEU=true
207305
B:P2PTunnelFE=true
208306
B:P2PTunnelFluids=true
307+
B:P2PTunnelGTEU=true
209308
B:P2PTunnelItems=true
210309
B:P2PTunnelLight=true
211310
B:P2PTunnelME=true
@@ -254,8 +353,6 @@ features {
254353

255354
craftingfeatures {
256355
B:CraftingCPU=true
257-
258-
# Use CraftingManager to find an alternative recipe, after a pattern rejected an ingredient. Should be enabled to avoid issues, but can have a minor performance impact.
259356
B:CraftingManagerFallback=true
260357
B:MolecularAssembler=true
261358
B:Patterns=true
@@ -352,6 +449,7 @@ grindstone {
352449

353450
modintegration {
354451
S:CraftTweaker=AUTO
452+
S:GregTech=AUTO
355453
S:IndustrialCraft2=AUTO
356454
S:InventoryTweaks=AUTO
357455
S:JustEnoughItems=AUTO
@@ -367,6 +465,7 @@ modintegration {
367465

368466
powerratios {
369467
D:ForgeEnergy=0.5
468+
D:GTEU=2.0
370469
D:IC2=2.0
371470
D:UsageMultiplier=1.0
372471
}

config/AppliedEnergistics2/VersionChecker.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
cache {
44
# Waits as many hours, until it checks again. [range: 0 ~ 168, default: 24]
55
I:interval=24
6-
S:lastCheck=1641643516941
6+
S:lastCheck=1649093345063
77
}
88

99

config/betterquesting.cfg

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
# Configuration file
22

33
general {
4-
# If true, then when you click on Claim all, a warning dialog will be displayed [default: true]
54
B:"Claim all requires confirmation"=true
6-
7-
# The default visibility value used when creating quests [default: NORMAL]
85
S:"Default Quest Visibility"=NORMAL
9-
10-
# If true, locks the quest chapter list and opens it initially [default: false]
116
B:"Lock Tray"=false
127

138
# Clamps the max UI height (-1 to disable) [range: -1 ~ 2147483647, default: -1]
@@ -18,26 +13,16 @@ general {
1813

1914
# Enabled the popup notices when quests are completed or updated [default: true]
2015
B:"Quest Notices"=true
21-
22-
# Increases or decreases the scrolling speed [range: 0.0 ~ 10.0, default: 1.0]
2316
S:"Scroll Speed Multiplier"=1.0
2417

2518
# The current questing theme [default: betterquesting:light]
26-
S:Theme=betterquesting:light
19+
S:Theme=bq_standard:dark
2720

2821
# Jumps the user to the last opened quest [default: true]
2922
B:"Use Quest Bookmark"=true
30-
31-
# Zoom in on cursor. If false, zooms in on center of screen. [default: true]
3223
B:"Zoom In on Cursor"=true
33-
34-
# Zoom out on cursor. If false, zooms out on center of screen. [default: true]
3524
B:"Zoom Out on Cursor"=true
36-
37-
# Zoom smoothness in ms [range: 0.0 ~ 2000.0, default: 100.0]
3825
S:"Zoom Smoothness"=100.0
39-
40-
# Zoom Speed [range: 1.05 ~ 3.0, default: 1.25]
4126
S:"Zoom Speed"=1.25
4227
}
4328

0 commit comments

Comments
 (0)