-
Notifications
You must be signed in to change notification settings - Fork 25
/
Changelog
1695 lines (1522 loc) · 67.5 KB
/
Changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
v3.2.21 - Last InfiTech 2 Update
Quests:
- "Better Steam Storage" - Updated information about Railcraft tanks (automatic output and where the tank stores information about the liquid)
- "Bio Flight" - Quest now detects jetpack that has been worn, used and refilled.
Changes/Fixes:
- Fixed desh nugget crafting into ingots (crafting table, packager)
- Naquadria Arrows are craftable
- Endium Ore is again macerateable
- Finally fixed naquadah generation in Asteroid Dimension (Workaround)
- Disabled ProjectRed Bench due to Dupe Exploit
- Prevented SG chevrons to move (thanks @Nex4rius)
- Fixed infusion recipes with shards
- Fixed compressing of Thaumium Blocks
v3.2.20
Quests:
- Added extra info in Nuclear Reactor quest about need of converting IC2 EU into GT EU.
New mods:
- P455w0rdslib
Mod Updates:
- CoFHCore -> 3.1.3-327
- OpenComputers -> 1.6.1.11
- OpenEye -> 0.8
- Railcraft Cosmetics -> 2.1.1
- SGCraft -> 1.13.3
- StorageDrawers -> 1.10.8
- Thaumcraft Inventory Scan -> 1.0.11
- Waila Plugins -> 0.2.0-25
- Wawla -> 1.0.5.120
- Wireless Crafting Terminal -> 1.8.7.3b
Changes/Fixes:
- Added new carts
- Added new tracks
- Fixed crash on openening stargate GUI
- Fixed crash on inventory scanning some items without aspects
- Fixed Adamantium being able to smelt in normal furnace
- Change naquadah ore gen (y = 60-120)
- More GT blobs in Asteroid dimension
- More GT blobs in End dimension
v3.2.19.1 hotfix
Mod Updates:
- GregTech -> 5.09.28pre
Changes/Fixes
- Fixed Chlorine recipe issues,
- Fixed NaqReactor not consuming Naq and generating energy for free
v3.2.19
Mod Updates:
- GregTech -> 5.09.27
Changes/Fixes:
- Packing Tape can be made in assembler
- Fixed LMB Split Drag
- Fixed crash with Coord Selector (you must craft new one and toss the old ones away to not crash)
- Fixed Flint And Steel aspects
- Fixed Mining Laser recipe
- Fixed Usability of Single Use batteries
- Fixed Gas/Diesel generators producing infinite fuel with Universal Fluid Cells
- Fixed some block tooltips
- Fixed unlimited EU in Dynamo Hatch
- Fixed Modular Armor crash
- Added marble and baselt to ore typefilter
- Nq Gen MKIII now needs molten enriched nq instead of dusts
- New usages for Graphite (reflectors, ...)
- Fixed scanning for oil
- Reduced damage senses take when harvesting IC2 crops
- Rebalanced Rocket Fuel
- Fixed Hydric Sulfide recipe
- EBF efficiency changes for better coils (-5% EU/t per 900K free heat capacity, One tier overclocking without efficiency loss every 1800K)
- Memory usage improvements
- Added December Patrons (thank you very much)
v3.2.18
Quests:
- Swapped "Material Saviour" and "I Am Bender" quests
- Separated Pumps, Pistons and Robot Arms from Components quest to optional.
- Separated Copper Cable creation quests from "Insulation" quest to optional.
- Titanium quest asks you to pick up the Hot Ingots (thanks @codewarrior0)
- Tungsten quest does not ask you to pick up the Hot Ingots (thanks @codewarrior0)
- Tungsten quest and Nichrome Coil quest positions swapped (thanks @codewarrior0)
- Added TungstenSteel Coils quest, requires TungstenSteel quest (thanks @codewarrior0)
- Added HSS-G Coils Quest, requires TS Coils quest (thanks @codewarrior0)
- High End Alloys quest requires HSS-G Coils quest, no longer asks for HSS-G, reduced coin rewards (thanks @codewarrior0)
- Added quest text describing the variants of HSS (thanks @codewarrior0)
- Added Naquadah Coils quest between Plasma Generator and Large Plasma Generator (since the latter uses Naquadah Alloy Wires in its Hull). Also requires HSS-G Coils quest. Quest text has tips for acquiring Naquadah. (thanks @codewarrior0)
- Coils quests have tips on how to reuse old Coils (thanks @codewarrior0)
- Few extra tweaks to texts regarding temperatures (thanks @codewarrior0)
Mod Updates:
- Ewy's Workshop -> 1.1.6
- SGCraft -> 1.13.0
Changes/Fixes:
- Greggify Diamond Hoe (thanks @Nex4rius)
- Wither no longer explodes on death (due to high performance hits and locking the game for even couple minutes)
- Nerfed Tesla Coil recipes
- Fixed Vinteum Lens not craftable
- Added GT Marble and Basalt to Digger's Backpack (thanks @codewarrior0)
- Added Solid Super Fuel as Dim Anchor fuel (thanks @codewarrior0)
- Added tooltips to some disabled AE2 items/blocks (thanks @Nex4rius)
- Workaround fix for Mining Laser Recipe
- Blacklisted few items in Decomposition Table due to material exploits
- Fixed chisel concrete speed (now should be in par with GT version)
- Allow Industrial Credits in Compacting Drawers (thanks @codewarrior0)
- Fixed LMB dragging with Item over an items.
- Fixed few aspects in certain items.
v3.2.17
New Mod:
- Block Properties
Mod Updates:
- InfinityCore -> 1.7c
- Ewy's Workshop -> 1.1.4 - Customized
- HardcoreEnderExpansion -> 1.8.6 - Customized
- GTTweaker -> 1.4.3
Changes/Fixes:
- Added Assembler recipes for remaining BC Pipes (thanks @codewarrior0)
- More crop tooltips (thanks @Nex4rius)
- Fixed Shard Oredictionary Entry
- Getting killed in the End now spawns properly Gravestone
- Workaround scripts moved to separate file
- Show both Node Transducer recipes in Thaumonomicon
- Include Dragon Blood recipe in thaumonomicon entry
- More clearly state Notches Brew recipe
- Added Ender-Shifted Refined Firestone
- ESR Firestone is now used in place of Refined Firestone in Kami Leg Recipe
- Extracted ChickenChunks script file from InfinityCore, for users to modify
- Vanilla Coal, Diamond, Emerald and Redstone ores will always drop themselves
- Brought back old EnderIO Alloy recipes (slightly tiered across Steam/LV and MV)
- Added (warded) Jars back to biliocraft potion shelves
- Lowered chance and amount of Food in chests (Chance 5 -> 1; Amount 16 -> 4)
- Updated Naquadah Cluster blast furnace recipe to new EBF requirements
- Added Dimensional Alloy
- Used in place of NaqAlloy in Player X-Dim teleporting machines
- Changed IC2 Teleport recipe to want Enderium instead of NaqAlloy
- EnderChest now drops Obsidian Plates and Enderium Dust instead of Obsidian Blocks
- Fixed HQM crafting detection in Ewy's Workshop table
v3.2.16
Quests:
- Quests that required crafting of any GT Casings are now Detection, due to possible use of Assembling Machine.
- Fixed information for Astrominer quest about Astrominer not able to mine Gregtech ores (it CAN mine them)
- Moved Oxygen Storage quest down the line, due to recipe change
- Assembly Line quest asks for correct number of blocks for the next quest
Mod Updates:
- GregTech -> 5.09.26
Changes/Fixes:
- Fixed Scanning Components consuming more than 1 data stick
- Dissassemblers above IV are now faster in dissasembling
- Exploding GT machines now drop randomly some of their crafting components
- eIO Rocket Fuel now compatible with GT + has its own GT based recipe (old recipe in VAT removed)
- EnderIO Alloys now made in Blast Furnace (removed old recipes, implemented default GT ones)
- Dough can be made also by throwing flour into cauldron with water
- Fixed reinforced stone dropping as TNT
- Wrench shift click can move machine front direction
- New naquadah fuel rods (stats same as MOX with 10x runtime)
- New automatic maintenance hatch
- New recipes for Lapotron Crystals, Mining Pipes, Mining Laser and Quantum Armor
- Gravisuite armor now made in Assembly Line
- Pollution fixes and rebalances (https://github.com/Blood-Asp/GT5-Unofficial/blob/unstable/src/main/java/gregtech/common/GT_Pollution.java#L21-L51)
- Few new pollution effects
- Adv Miner and Oil Drill now turns off after nothing can be mined/drilled
- New modular armor now obtainable (still WIP, testing needed, balancing proposals are welcome)
- Changed Native Cinnabar Cluster processing (requires MV Centrifuge, to get 3.5 Quicksilver)
- Mercury can be solidified to Quicksilver again (and vice versa)
- Re-added alumentum from charcoal recipe
- Removed requirement for disabled tunsten cluster research for kami
- Enabled missing rounds for SAG Mill (Neutronium, Titanium and NaqAlloy)
- Fixed Thaumonomicon localizations
- Changed Oxygen Storage recipe
v3.2.15
Mod Updates:
- NuclearControl 2 -> 2.4.2a
- HQM -> 4.4.4a - CUSTOMIZED
Changes/Fixes:
- Sadles can now be crafted (thanks @Nex4rius)
- Re-enabled Vanilla doors animations
- Unified usage of Empty Cells and Universal Cells in recipes (thanks @Nex4rius)
- Nerfed Alloy Bags
- Fixed crash with Nuclear Control
- Fixed crash with teams in HQM (huge thanks to @pgelinas)
- Workaround fix for missing recipe for H-D Alloy
- Fixed Quicksilver Drop dupe
v3.2.14
Mod Updates:
- GregTech -> 5.09.25
- Forestry -> 4.2.16.64
- LogisticPipes -> 0.9.3.128
- Ewy's Workshop -> 1.1.4
Changes/fixes:
- SAG Mill Nerf (Lowers base chance rates, increases grinding ball chance rates proportionally, nerfs grinding ball material/power usage)
- Made StarGate event horizon Opaque (thanks @Nex4rius)
- Re-Battery can now be extracted to obtain back Small Battery Hull (thanks @Nex4rius)
- Fixed a lot off missing materials (Vinteum, Steeleaf, Enderium, ...) (but as before, if more found, let us know)
- Dixed Fupe with Ewy
- ZTones blocks can be cut to microblocks
v3.2.13 - Hotfix
Quests:
- Fixed Kanthal coils in Pyrolysis Quest
- Repeatable Cracking quests made bit less OP
- Slight nerf to Tungsten and Tungstensteel Shop
- Fixed icons and labels in shop
Changes/fixes:
- Workaround fix for Aluminum Compressed Plates (yes it is cheaper on dynamite than other Compressed Plates, deal with it for now)
- Fixed nugget dupe
- Fixed certain components not craftable (like Quartzite Screw or Tin Spring/Tin Long Rod) - If more are found, please let us know)
v3.2.11
Quests:
- Added new questline (GalacticCraft)
- Added quests for new GregTech blocks
- "Fast Steel" quest fixed. Now looks only for 128 Wrought Iron.
- Fixed Jackhammer quest
- Rebalanced few quests
Mod Updates:
- GregTech -> 5.09.24
- Buildcraft -> 7.1.18
- Galacticraft -> 3.0.12.463
- Forestry -> 4.2.15.63
- EnderIO -> 2.3.0.429
- EnderCore -> 0.2.0.39
- InfinityCore -> 1.7b
Removed mods:
- GalacticGreg (now integrated within GT)
Changes/Fixes:
- Tungsten Clusters no longer obtainable. Current Tungsten Clusters processing changed (gives Tungstate instead of Tungsten)
- Pollution is now fully implemented (http://forum.industrial-craft.net/index.php?page=Thread&postID=203357#post203357 for more info)
- Massive load time improvements
- More heating coils (old ones need to be replaced/converted - put in crafting table will convert them)
- Marble and Basalt generation now handled by GregTech
- Lowered Marble gen from Chisel
- Lategame GT recipe changes (LuV+)
- Assemblyline fixes and more pollution work
- Fixed NEI showing Scanners consuming 50mB of Honey instead of 100mB
- Nerfed Advanced Building Guide
- Fixed SC2 Solar Panel crafting
- Removed Wooden Sickle, re-added Stone Sickle.
- Workaround fix for OC computers not disconecting components on reload, causing "too many components" crash.
- Fixed few formating issues in Guide books
- Added Guide Books for Assembly Line and Large Diesel Engine
- Added info to Large Turbines about different required casings.
- Fixed T1 Rocket Engine returning empty Lighter
- Moved Last Millenium portal out from QED
- Ender rift focus require naquadah rings
- Fixed book dupe issue with crafting QDS
- Try fix for wierd lines in maintenance pages of Guide books if you have "wierd/nonstandart" desktop resolutions
- Removed empty pages in Guide books
- Re-hauled Autoclaving Combs energy usage (to be in line with Crops)
- Removed cheap Naq Alloy recipe
- Fixed crafting of Leggings of the Burning Mantle
- Fire Resist (meta 8259) and Night Vision (meta 8262) potions can be also now used to make KAMI Leggings and Helmet - these potions still need to be 10 minute versions.
- Fixed Alvearies in Nether not having Hellish temperature
- Fixed temperatures of Nitrogen, Oxygen, Methane and Hydrogen gas (now equals to 295K)
- Added compatibility for Astrominer with GregTech ores
- Golems no longer suffocate on Planets/Moons
- Added new Patreons
v3.2.10.1
- Experimental update, HUGE changes, pollution introduced (not yet any effects), HQM not updated to reflect changes in GT yet.
Mod Updates:
- Gregtech -> 5.09.22
Changelog:
Same as v3.2.10 + http://forum.industrial-craft.net/index.php?page=Thread&postID=201665#post201665
v3.2.10
Quests:
- Fixed few quest typos
- Changed "Magnetizing" quest from Crafting to Detect
Mod Updates:
- Carpenter's Blocks -> 3.3.8.1__dev_r1
- EnderCore -> 0.2.0.36
- EnderIO -> 2.3.0.427
- Ewy's Workshop -> 1.1.2
- Infinity Core -> 1.7
- StorageDrawers -> 1.9.9
- XACT -> 0.5.5c
- Forestry -> 4.2.14.62
- LogisticsPipes -> 0.9.3.126
Removed Mods:
- YAMPST - discontinued
Changes/Fixes:
- Fixed EnderIO farm not working
- Fixed fluid dupe with eIO Fluid Tanks
- Fixed FPS hit with Ewy's Workshop
- Thaumonomicon no longer consumed when crafting the Cap in Arcane Worbench or XACT crafter.
- Fixes dupe issue with XACT crafter and Forestry Worktable, by ignoring it.
- Fixed QDS recipe consuming the book
- Added few disabled tooltips to Galacticraft items
- Added more info to veins in OreBook (shows all possible ores in "header" of the vein)
- Added tooltip to Flint and Steel about chance to light up things
- Fixed few wrongly assigned clusters to ores
- Desh clusters can now be obtained from desh ore
- Added Electrical Steel Item Casing for future use
- Fixed few tooltip localizations for LogisticsPipes items
- Removed invalid entries from HEE orb blacklist (bluepower items)
- Added alternative use for Irradiated Combs to reduce material cost of Mutagen (lowers Royal Jelly requirement)
v3.2.9
Quests:
- Fixed reward for Brown Limonite Quest
- Fixed Battery Shop not repeatable and wrong cost
- Added extra information for Magical Steel quest
- Updated information in Tungstensteel Boiler quest
- Soft reset the link for Analyzing Crops quest (It might have reset the quest for you, so yay to do it again)
- More items in shop locked behind Avengers Assemble and not the Packing Up. (Iron, Copper, Tin and Battery are still available as they were before)
- Added info about tank layout and output side for the "Better Steam Storage" quest.
- Concealed "Higher Tier Tools" quest
New Mods:
- Ewy's Workshop (replacement for Steves Workshop)
Removed Mods:
- Steves Workshop
Mod Updates:
- AppleCore -> 1.3.2
- LogisticsPipes -> 0.9.3.124
Mod Downgrade>
- EnderIO -> 2.3.0.425
Changes/Fixes:
- Removed empty script files (Just in case I recommend deleting manually your scripts folder before the update)
- Swapped Polyethylene to Polyprolactam in reinforced thread crafting recipe
- Removed Damascus Steel recipe buff
- Fixed KAMI vis costs
- Fixed Clusters needing wrong ores (Lithium, Manganese, Antimony)
- Fixed Lithium Clusters giving lithium
- Fixed Galacticraft wrench recipe, not consuming the wrench.
- GC Wrench now can be crafted only using Steel Wrench (any durability)
- Hiden runic armour/infusion enchantement requirements
- Disabled KAMI shards in magic generator
- Moved Universal Cluster research near to KAMI researches
- Removed clusters from IBF to hide the recipe from NEIAddons
- Conceal unconcealed custom researches
- QDS can now be crafted with any wooden plank, not only vanilla
- Stone slabs are now crafted in same way as wooden ones (saw)
- Renamed Travellers Gear Cloak to Simple Cloak (To stop confusing some players. Simple Cloak is the one used for Wolven Cloak or Voluminous Pockets)
- Fixed EnderIO farm not working
v3.2.8
Quests:
- New quest about getting higher tier material - Bronze Age
- New quest to obtain Cropnalyzer early. - Bronze Age
- New shop item - Single-Use Acid Batteries
- "Manufactured Diamonds" - Lowered required amount of iDiamonds, raised optional reward
- "Electrical Tools" - Fixed quest not recognizing charged tools.
- Added Soldering Iron Quest
Mod Updates:
- BiblioCraft -> 1.11.5
- EnderCore -> 0.2.0.35
- EnderIO -> 2.3.0.426
- IC2 Nuclear Control -> 2.4.0a
- InfinityCore -> 1.6b
- Jabba -> 1.2.2
- Railcraft Cosmetics -> 1.7.2
- WCT -> 1.8.6.2b
- IndustrialCraft 2 -> 2.2.822
- LogisticsPipes -> 0.9.3.122
Enabled Hardcore Wither mod by default
Changes/Fixes:
- Fixed Railcraft Lead Plate name
- Removed its crafting recipe since its not used
- Removed Rebar crafting table recipe
- OpenComputers Manual no longer given to new players (since players can't start with OC before HV). Still craftable
- Added microblocks to few GT blocks
- Disabled Translocator Crafting Grid (dupe exploit)
- Raised energy usage of Telepad by 0.85x allowing it to be charged with HV and speeding the teleport process by 0.85x
- Disabled Slotted Book from Bibliocraft (dupe exploit)
- Fixed Electrical Tools dissapearing when running out of energy instead of just not being usable.
- Expanded Thaumcraft Native Cluster Support (couple new clusters)
- Enabled KAMI with "this-is-fucking-insane-hard" recipes
v3.2.7
New Mods:
- Hardcore Wither - Disabled per default; for testing.
- Chisel Tones
Mod Updates:
- EnderIO -> 2.3.0.425
- InfinityCore -> 1.6a
- Railcraft -> 9.12.2.0
- Wireless Crafting Terminal -> 1.8.3b
- StorageDrawers -> 1.9.8
- Framez 2 -> 0.1.2
Changes/Fixes:
- DOB Bees now require catalyst also for breeding inside Mutatron
- Fixed Certus and Platinum bee Flower blocks
- Fixed Fishing Core infusion
- Added aspects to Ztones blocks
- Upgraded TC Farmland recipes to garden soil (from Ztones)
- GUIDE BOOKS: Removed Maintenance problems table -> Replaced by text version
- GUIDE BOOKS: Moved BBF Example recipes to another page
- Re-enabled Ztones Ofanix - with changed recipe
- Re-enabled Ztones Splat Axe - No crafting recipe, rare loot
- Halved tungstate cluster output in Blast Furnace/Pulverizer
- Travel Anchor can't be used as unpowered elevator now. You MUST have Staff of Travelling
- Disabled Metamorphic Stone wordgen
- Metamorphic Stone cannot be silk touched anymore. Always gives Cracked version, which needs to be "fixed"
v3.2.6
Forge updated: 1614
Quests:
- "Silicon Age" - "Industrialist TNT" - Enhanced the tasks
New Mods:
- Wireless Crafting AE2 Terminal
Mod Updates:
- AppleCore -> 1.3.1
- Galacticraft -> 3.0.12.460
- InfinityCore -> 1.6
- Railcraft -> 9.11.0.0
- LogisticPipes -> 0.9.3.121
- Wawla -> 1.3.3
Changes/Fixes:
- Fixed few aspect errors
- Enhanced Compatibility with IC2 (Pu, U)
- Sped up world loading time
- Changed eIO Enchanter recipe for Haste enchant
- Fixed EV Battery Charger (Workaround until GT.22)
- Lowered Volcano Spawnrate
- Added button for server download
- Added conversion recipe for GT Ores -> Vanilla (because of XU stabilization ritual)
- Enabled Last Millennium Dimension (default recipe, moved to QED)
- Fixed Extruder crafting recipe for PneumaticCraft Tubes (no longer consumes the Shape)
- Activated DOB bee
- Fixed Diamond Nugget unification
v3.2.5.1
Changes/Fixes
- Fixed Dimensional Transceiver not being craftable
v3.2.5
Quests:
- Fixed typo in Oil Quests about amount of fluid needed to complete
- Added 2 extra quests about explaining QDS
- "Magic": "Clustered" - Removed U235 cluster from the 4th task
New Mods:
- Ztones
Mod Updates:
- EnderCore -> 0.2.0.33
- Industrial Craft 2 -> 2.2.821
- Thaumic Energistics -> 1.0.0.5
- InfinityCore -> 1.5
- SGCraft -> 1.11.2
- AppliedEnergistics 2 -> rv3-beta-6
- Buildcraft Compat -> 7.1.5
- Forestry -> 4.2.12.60
- JourneyMap -> 5.1.4p1
- Magic Bees -> Customized
- Pam's Harvestcraft -> Customized
- ProjectRed -> Customized
Changes/Fixes
- Changed Oblivion Essence crafting recipe
- Fixed Framing Saw duping in crafting Malisis Doors
- Rods for BC pipes are Lathe compatible
- Disabled Rotating Elevators
- Nerfed recipe for Dimensional Transceiver
- Moved Wood Cuuters from SC2 to MV
- Changed recipes for all Colored Buildcraft pipes.
- Lowered burntime of PcCraft fuels.
- Bees now require resource blocks to breed and as flowers to produce.
- Add SAG Mill support for all GT ores
- Remove standard apatite and osmium ore milling
- Disable normal certus quartz milling
- Swap SAG Mill recipes style
- Modify grinding balls to be based off GT rounds
- Disable dark steel grinding balls
- Move SAG Mill to HV
- SAGMill primary use is better yield on Byproducts
- Added aspects for a ton of stuff
- Changed Oil Comb processing
- Plutonium and Uranium from IC2 are now oredicted with GT relevant versions.
- Removed PHC presser recipe for making Logs -> Paper
- Fixed GT Tools vanishing in PrRed tables
- IC2 Fertilizer compatible with FT
- Fixed crash with fluid modules/pipes from Logistics Pipes
- Fixed crash with "most likely" button in Logistics Pipes
- Lowered EU/t gained from Dragon Eggs and Vis
- Fixed jetpack recipes
- Disabled StorageDrawers item conversion to prevent oreDict exploits
- Renamed Stargate Controller to DHD
- Changed Tin Can recipe
- Added April patrons
v3.2.4.1 Patch
Mod Updates:
- HardcoreEnderExpansion v1.8.5 -> Customized
- InfinityCore -> 1.4a
Changes/Fixes:
- Disabled MB Osmium Bee for sure now
- Fixed thaumcraft scripts from previous patch not being in
- Added disabled tooltip to Relocator
- Fixed Osmium Bee localization
- Raised power cost for Telepad, and changed the recipe
- Disabled overlapping MB Resource bees (Iron, Copper, etc...)
- Removed Forestry scoop from Naturalists Chests
- Disabled normal Dragon Eggs crafting from Draconic Bees.
- Introduced new way of making Dragon Eggs. (Hint: Requires combination of Bees, Thaumcraft, HEE)
- Added different way in Oblivion Essence crafting.
- Changed recipe for IC2 Teleporter
- Changed Recipe for Advanced Miner (IC2) to require Enderium Block instead of Teleporter
- Steel Comb processing gives Molten Steel + Multiplied crushed ore instead of just Molten Iron
- Few more comb processing tweaks
v3.2.4 - BLUEPOWER IS GOOOOOONE!
Note: You might want to enable Electrotine retrogen in ProjectRed.cfg (B:"Electrotine Ore retrogen")
Quests:
- Jetpack quest moved to later
- Coal and Chalco stone types (granite, stone, black granite,...) now oredicted for sake of "Ore Annoyance" quest.
- Changed the "Blast Furnace Upgrade" - More Storage task to require 4slot instead of 16slot Buffer.
- Fixed typo in "Magical Steel" quest.
- Fixed "Water in the Sky" quest
New Mods:
- Railcraft Cosmetics
Removed Mods:
- Bluepower
Updated Mods:
- FastCraft -> 1.23
- Gendustry -> 1.6.4.135
- IC2 NEI Crop Plugin -> 1.1.0
- IndustrialCraft 2 -> 2.2.820
- InfinityCore -> 1.4
- LogisticsPipes -> 0.9.3.114
- StorageDrawers -> 1.9.6
- Yampst -> 3.2.4
Downgraded mods:
- Thaumic Tinkerer -> 2.5.517
Changes/Fixes:
- Jetpack needs Large Fluid Cell
- Thaumostatic Girdle no longer needs PCB
- Fixed EU/t requirement for Mixing GT Dough
- Added Storage Drawers redstone upgrades
- Taking items from drawers will try to put them directly in your inventory first, then drop them in front of drawer.
- Obsidian storage upgrade gives drawers higher blast resistance
- Fixed crafting of Wireless Golem Backpack.
- Made the node transducer a bit easier to craft. Added a SEEECRET recipe for the node transducer. It should take players SEVERAL SECONDS to discover it.
- Fixed calculation of air quality for IC2 crops
- Water Mill now checks for Biome Type
- Nerfed Osmium Bees. If you are crashing with invalid chromosomes after the update: "Setting `genetics.clear.invalid.chromosomes` to `true` in config/forestry/common.cfg will fix it"
- Adjusted Warp Levels
- Changed Thaumcraft prereqs (no longer deps on Transmutations)
- Removed U-235 Cluster processing
- Changed TK Foci to require Red Garnet Lense.
- Added Iron Cluster + calcite recipe in EBF
- Re-added Thaumcraft Charcoal fabrication
- Fixed Naquadah transmutation
- Removed IBF recipes from NEI
- Greatwood Wand no longer require discount gear
- Staff Cores require discount gear
- Removed Concussion Creepers spawn in Outer Lands
- Fixed steel transmutation, back to requiring Wrought Iron Nuggets
- XACT crafter will no longer try to pull from Production Table or Forestry Worktable to fix dupe exploit.
- IC2 Single-Use battery crafting boosted
- Basalt can be chiseled to different types (crossmod)
- Chiseling Concrete is now available (GT <> Chisel)
- Epoxy Coated Plastic creation chance is now at 100%
- Etching of PCB now corresponds the Ething Success in Chemical Bath, but it is lowered by 15% due to it being FASTer and "intensive". Amount of Etching Acid needed in ChB might get changed in future.
- Blue Alloy is now crafted in Alloy Smelter with Silver+Electrotine Alloy
- Added recipes for GT Mossy Concrete (thanks to @poly)
- Fixed Multi Smelter Guide book crafting
- Disabled Fiery Steel Dust, Ingot and Plate as magical fuel
- Fixed crashing with Infused Crops. Fixed crafting of them as well.
- Re-enabled Harvestcraft NEI Handler
- Wooden Rails are cheaper and pre-tech
- Added MagicBees combs to oreComb dictionary (thanks @livingLegend)
v3.2.3.1 Patch
Updated Mods:
- FastCraft -> 1.22
Quests:
- Fixed "Water from the Sky" quest not being able to submit water
Changes/Fixes:
- Fixed Recipe Plan consuming Integrated Circuit
- Completed Prereqs for Thaumcraft
- GT Dough now takes salt to craft
- Fixed plantball from saplings again
- Disabled hiding of recycling recipes
- Disabled ProjectRed Marble
- Disabled BuildCraft Paintbrush
- Changed OpenBlocks and IC2 paintbrush recipes
- Fixed crash on opening Tier 2 Component Bag
v3.2.3
New Mods:
- ProjectRed
Mods prepared for removal in next update:
- Bluepower (still trying to resolve the issue with removed volcanos; Bluepower items are no longer craftable; All Bluepower items, blocks, GATES and CANVAS BAGS from Bluepower will be removed in v3.2.4!).
Mod Updates:
- Buildcraft -> 7.1.16
- BuildCraftCompat -> 7.1.4
- Chisel -> 2.9.5.11
- Ding -> 1.7.10v2
- EnderCore -> 0.2.0.32
- Forestry -> 4.2.11.59
- Galacticraft -> 3.0.12.454
- GregTech -> 5.09.21
- IndustrialCraft 2 -> 2.2.817
- InfinityCore -> 1.3
- LogisticsPipes -> 0.9.3.108
- NEIAddons -> 1.12.15.41
- Railcraft -> 9.10.0.0
- StorageDrawers -> 1.9.5
- Yampst -> 3.2.3
Quests:
- Changed few rewards
- Re-ordered and revised some LV quests to lower excessive task requirements and removed a couple of duplicated tasks.
- Added tooltip to reward bags (cannot be seen in quest book, only inventory/NEI)
- Fixed "Ore Annoyance" to ask for tin instead of cassiterite.
- "Magical Steel" quest is now dependant on Magic "Alchemical Dabling"
- Removed from "Magical Steel" need to have crucible, since the dependency already has it.
- "Magical Steel" added info about heating up the crucible
Changes/Fixes:
- Nether Star Plate can be made by compressing Nether Star Dust (no longer need to cut block)
- Fixed Iron Bars recipe
- Fixed complexities, moved node transducer, and sorting core to correct tier
- Fix malisis/vanilla door recipe clash (Malisis doors need Framing Saw to craft)
- Fix shunting wire and wire frame recipe
- Fix TC enchantment complexities
- Slightly lower early alchemical fabrication costs
- Fixed Kinesis Pipes crafting consuming integrated circuits
- Plantball fix (saplings and reeds)
- Fixed Letter recipe
- Uranium 238 now spawns also in Pitchblende veins
- Fixed purifying Almandine to give Almandine (Bees)
- Dark Glass from eIO can now be crafted
- Added missing mob drops to FT Hunter's Backpack
- Added Reeds to FT Forester's Backpack
- Lower warded arcana to LV
- Fishing core lowered to early MV from late MV
- Modify naquadah creation
- Disable infused crops (due to them not being obtainable and being crashaholic)
- Fixed burn value of Wood Plank (compressed Pulp)
- Re-enabled vanilla Brewing Stand and moved it to Thaumcraft research
- Vanilla diamond armor is now made from Diamond Plates
- Vanilla diamond tools require File
- EV Magic Generator now made from Europium
- Boosted Warded Glass recipe
- Fixed crafting of Wooden Rings
- Added Centrifuge recipes for Harvestcraft Meats -> Methane
- Added cooking recipe for raw Harvestcraft Meats
- Updated GT OreGen Guide
v3.2.2
Quests:
- "Dust A Must" Moved grind stone to separate quest "Grind That"
- "Dirty Endeavours" no longer dependand on "Ore Annoyance"
- "Dirty Endeavours" task target changed from Limonite to Iron
- "Cleaning" task targets changed from Redstone to Iron
- Fixed some quests rewarding GregTech Credits, instead of Industrial ones.
- Added new repeatable quest to Bronze Age.
Changes/Fixes:
- Since Assembly Table is disabled, BC Facades are now crafted in Crafting Table
- Even if the game says you dont have quests enabled, you should be able to craft yourself an HQM Quest book (on updated 3.1.x worlds)
- Added metal post recipes and fixed reinforced tracks
- Forcefield emitter uses emitter instead of diamond block
- Fixed conflict for minecart/SC standard hull recipe
- Fixed broken Pure Love research (Thanks @livingLegend)
- Excavation focus requires Titanium to craft
- Added Quartzite transmutation
- Buffed entropic processing
- Added "(Fully Developed)" to Empty PCB with 100% etching success
- Lowered Iridium spawn chance in chests
- Tetrahedrite is much likely to spawn (Y60-120, raised weight)
- Added Tooltip to Charcoal Igniter and BBF about not being consumed when used in crafting of Guide books
- Fixed Patreon names (SORRY)
v3.2.1
Quests:
- Added new quest in Bronze Age, to teach player about the Credits and the Shop
- Shop "quest line" will now open after completing the quest mentioned above
- Fixed some typos
- Added Description for the Magic quest line
- "Better than collecting Food" quest - dependant also on "Handwork Tools" quest (because of the Bucket requiring plates)
Changes/Fixes:
- Fixed few recipes that wanted IC2 Drills which are disabled
- Added few more DISABLED tooltips
- Disabled RC Energy Carts
- Added tooltips to Industrial Craft seeds to tell what they drop and what block they need (if they need) (thanks @DarknessShadow)
- Lowered Buildcraft oil generation (1.2 -> 0.5)
- Added OCEAN and DEEP OCEAN biomes to have increased oil gen
- Removed PcCraft Oil generation
- Fixed forestry difficulty settings
- Disabled IC2 Miner (its unusable with IC2 Drills disabled)
- Changed recipe for Advanced IC2 Miner
- Fixed Scroll-wheeling items from/into inventories
- GT Dough can be now crafted also with Fresh Water
v3.2.0
Mod Updates:
- All of them
Removed mods:
- Bibliowoods Addons
New Mods:
- ASP + GS Patcher (fixes few Gravisuite issues)
- ChickenChunks
- Ding
- Framez2
- HelpFixer
- HQM
- IC2 NEI Plugin
- JsonLootBags
- MouseTweaks
- Steves Carts
- Trajectory
- Travellers Gear
- Witching Gadgets
Changes:
- Added HQM with quests. Quests are made as a part to help new players understand GT a bit, but at the same time they give rewards which can be spent in shop (Shop will be available however in LV age)
- Quests are still going to be added, but currently there is full quest line for all GregTech Electrical Ages and little bit on thaumcraft
- Thaumcraft got completely overhauled
- More balancing happend
- RC Steam Oven has been removed
- PneumaticCraft got overhauled slightly
- Buildcraft overhauled
- Couple of new metals and alloys are available
- Added edible salt for use in food crafting recipes
- Removed RC Steam Turbine
- OpenComputers PCB has been removed, instead you need to use PneumaticCraft PCBs
- PneumaticCraft PCBs are harder to craft
- Chisel worldgen lowered
- Disabled IC2 power storages
- Removed IC2 Electrical tools (those that have equivalents in GT)
- Removed Gravisuite Gravitool and Advanced Mining Drill
- Blacklisted couple of items in HEE Instability Orb to prevent them from being obtainable
- Disabled RC Residual Heat (that means you will not be able to track player movement with RC goggles, but it will enhance the stability and performance)
- Added NEI Info book (ugly version) to teach new players about NEI (you know those buttons on top and bottom)
- AND POSSIBLY PROBABLY MUCH MUCH MORE!!!!!!!!!
v3.1.22(23)
Forge updated to 10.13.4.1566
Mod Updates:
- AsieLib -> 0.4.5
- Chisel -> 2.9.4.10
- Computronics -> 1.6.0
- ModTweaker2 -> 0.9.5
- OpenComputers -> 1.5.20.38
- PneumaticCraft -> 1.12.1.144
- BDLib -> 1.9.4.109
- Buildcraft -> 7.1.14
- Buildcraft Compat -> 7.1.3
- Forestry -> 4.2.3.51
- Gendustry -> 1.6.4.133
- GregTech -> 5.08.33
- Industrial Craft 2 -> 2.2.806
- JourneyMap -> 5.1.3
- LogisticsPipes -> 0.9.3.70
Changes/Fixes:
- [NEW] Added GregTech Multiblock Guide Books (contains also 5.09 multiblock guide books)
- [NEW] Industrial Biomass can be used as fuel in SemiFluid Generator (same value as Creosote)
- [CHANGE] Forced Universal Housing name change to be recognized by other mods
- [CHANGE] Removed crafting of forestry Scoop
- [CHANGE] Changed crafting of Scoopator to require GT scoop
- [CHANGE] Renamed Biomass (from IC2) to Industrial Biomass
- [CHANGE] Mutagen can be crafted in autoclave, less Mutagen Catalysts. More Industrial Biomass
- [CHANGE] Removed easier crafting recipe for Illuminated Panel (AE2)
- [CHANGE/FIX] Force-swapped OreDict entries for Pure Nether and Pure Certus Quartz.
- [FIX] Fixes crash with OC's adapter
- [FIX] Fixed wand cap exploit (TC)
- [FIX] Fixed spawning of unnamed oreblocks within Naquadah Veins
- [FIX] Disabled Storage Drawers Unification with AE2 combined (certus quartz, nether quartz).
- [WORKAROUND] Added Electrical Tools to their oredictionary
- [PATREON] Added December Patrons
v3.1.21
Mod Updates:
- AromaBackup -> 0.0.0.6
- Automagy -> 0.27
- EnderIO -> 2.3.0.421
- JourneyMap -> 5.1.3b1
- MalisisCore -> 0.14.0
- MalisisDoors -> 1.13.0
- Nuclear Control 2 -> 2.3.3a-Exist
- Pam's Harvestcraft -> 1.7.10La
- Storage Drawers -> 1.7.2
Changes/Fixes:
- [NEW] Added Medieval door
- [NEW] BackupRecovery GUI (accessible from your World Selection)
- [NEW] Can whitelist/blacklist dimensions from backup
- [NEW] JourneyMap support for large resource packs like Sphax BDCraft 64/128/256/512
- [NEW] New Yeta Wrench overlay
- [CHANGE] Changed item render type for Storage Drawers back to fast.
- [CHANGE] Drawer Controller has limited range of 6 blocks (radius)
- [CHANGE] Changed Search For Item In Nearby Inventories default keybind from [t] to [*]
- [CHANGE] Gregified AE Monitor Kit
- [TEMPORARY CHANGE] Disabled Harvestcraft NEI Handler
- [FIX/WORKAROUND] Removed anyIron and anyCopper tags from Wrought, Pig iron and Annealed copper (ingots, dusts, nuggets) to fix unification exploit.
- [FIX] Crash with fence gates on dedicated servers
- [FIX] Fixed wrong animation direction for fence gate
- [FIX] Disabled auto-smelt working together with fortune to fix multiply exploits
- [FIX] Fixed Computer Case (T2 and T3) and Server Rack to use correct heat vents (with meta :1)
- [FIX] Fixed crafting of Portable Information Panel
- [FIX] Fixes cross-mod issue with Applied Energistics 2 and Nuclear Control 2
- [FIX] Fixed rendering of Gregtech items on fast setting
- [FIX] Journeymap causes FPS drop every 30 seconds due to disk contention with Minecraft file updates
- [FIX] Removed recipe for Candleberry > Cotton.
- [PATREON] Added November Patrons
v3.1.20
Forge updated to 10.13.4.1558
Mod Updates:
- EnderIO - > 2.3.0.420
- JourneyMap -> 5.1.1
Mod Downgrade:
- Forestry -> 4.0.11.40
Changes/Fixes:
- [NEW] EnderIO: OpenComputer Conduits
- [CHANGE] StorageDrawers rendering set to fancy. It will render GT Items on labels, but can cause FPS drops. Change it back to fast if you need to.
- [FIX] Fixed Chiseling Ender Chest
- [FIX] Fixed Chamelium recipe
- [FIX/WORKAROUND] Combs are again processable in GT Centrifuge
v3.1.18
Mod Updates:
- AsieLib -> 0.4.4
- Bibliocraft -> 1.11.4
- Buildcraft -> 7.1.13
- Chisel -> 2.9.3.9
- Computronics -> 1.5.9
- CustomMainMenu -> 1.9.2
- EnderCore -> 0.2.0.31
- EnderIO -> 2.3.0.419
- Extra Utilities -> 1.2.12
- Forestry -> 4.1.1.46
- Galacticraft -> 3.0.12.404
- Gendustry -> 1.6.3.128
- Industrial Craft 2 -> 2.2.793
- JourneyMap -> 5.1.1rc1
- LogisticsPipes -> 0.9.3.69
- MalisisCore -> 0.13.1
- MalisisDoors -> 1.12.0
- Nuclear Control 2 -> 2.3.2a
- OpenBlocks -> 1.4.4 (downgrade to stable)
- OpenModsLib -> 0.8 (downgrade to stable)
- OpenEye -> 0.6 (downgrade to stable)
- PneumaticCraft -> 1.11.19-141
- Railcraft -> 9.8.0.0
- Thaumic Tinkerer -> 2.5-513
- WailaPlugins -> 0.2.0-23
- WailHarvestability -> 1.1.5
New mods:
- Storage Drawers
- TubeStuff (only for Online Player Detector and AutoWorkbench MK II)
- Wawla
Changes/fixes:
- [NEW] New Trash cans (Energy and Fluid)
- [NEW] Added tooltip to some disabled items (thanks @DarknessShadow)
- [NEW] Added Tank Switch button to the Fluid Canning Machine GUI
- [NEW] Added NEI "Search For Item In Nearby Inventories" button (Default 'T').
- [NEW] Switch on eIO Powered Lights when they get wireless power, too.
- [CHANGE] Overhauled Amadron Trades, instead of Emeralds it uses GT Ancient Coins
- [CHANGE] Disabled GC energy conversion. GC machines can accept any energy, but will only output RF.
- [CHANGE] Disabled eIO and HEE Enderman skull interchanging
- [CHANGE] Disabled crafting of Auto Project Table from Blue power (due to huge cause of lag). I recommend removing them and replacing them with BC or TS versions.
- [CHANGE] Disabled Auto Refill (was causing too much problems and it was annoying in some cases)
- [CHANGE] Changed speed of solidifying Wet Concrete into Conduit Binder
- [CHANGE] Autoclaving of Pulsating/Vibrant Crystals now has 85% chance of success
- [FIX/WORKAROUND] Made ExU Drums to not stack no matter what. Solves issue with duping.
- [FIX/WORKAROUND] Hardcoded Localization for Steves Workshop items
- [FIX] Fixed Fluid Canner NEI handler crashes.
- [FIX] Fixed few missing textures for He, CO2, Argon fluids/gases
- [FIX] Fixed Engine Booster recipe
- [FIX] Fixed Digger backpack not accepting items
- [FIX] Fixed block recipes (thanks @DarknessShadow)
- [FIX] Fix Vacuum Chest shift-clicking
- [RECOMMENDATION] I recommend that you double-check your BC gate setups after this update.
Known Issues:
- Double clicking an item in AutoWorbench MK II (when that item is also present in the crafting area) causes client to crash. (http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/1281065-immibiss-mods-now-with-85-7-less-version-numbers?page=114#c2294)
- When JM minimap is not present on the screen your logs gets spammed with GL ERROR 1281 thingie. (https://github.com/RS485/LogisticsPipes/issues/845)
- Crafting recipes that have a filled Cell in them are broken in Steves Worshop production Table. Other crafting tables are fine. (https://github.com/Vswe/Production/issues/36)
Missing Items:
- malisisdoors:curtain
- malisisdoors:item.curtain
- OpenBlocks:elevator_rotating
- OpenBlocks:builder_guide
v3.1.17 Criitical Hotfix
- Fixed FTB Launcher not distributing IC2.ini config file, making new chunks in your worlds contain IC2 ores, even when they are disabled.
- With that opportunity released evil Gatsu. (Thank you for patronage)
v3.1.16 Hotfix
Mod Updates:
- GregTech -> 5.08.32
Changes/fixes:
- Fixed forestry processing in GT counterparts (combs, squeezing, fluid extracting, etc...)
- Fixed forestry backpacks not accepting items they should
WARNING: There will be around 50 missing items from update 3.1.14 to this one. Reason is that Forestry changed the IDs of its Wooden Logs (to be more specific, they use now just 1 ID with different NBT tags).
It will probably cause those Wooden Logs and other wood related items (logs, planks, slabs, fences) gone from your worlds. There is nothing you can do about that.
WARNING2:
Multiblocks (alvearies or farms for example) will lose their inventories and may need to be broken and rebuilt.
Forestry Stained Glass has been removed.
v3.1.15
Mod Updates:
- AsieLib -> 0.4.3
- Buildcraft -> 7.1.11
- Buildcraft Compat -> 7.1.2
- Chisel -> 2.9.2.8
- Computronics -> 1.5.8
- EnderCore -> 0.1.0.26
- EnderIO -> 2.3.0.417
- ExtrabiomesXL -> 3.16.3
- Forestry -> 4.0.10.39
- Galacticraft -> 3.0.12.376
- Gendustry -> 1.6.2.127
- GregTech -> 5.08.31
- Headcrumbs -> 1.6.2
- Industrial Craft 2 -> 2.2.785
- Logistics Pipes -> 0.9.3.61
- MagicBees -> 2.4.0
- ModTweaker2 -> 0.9.4
- NEI Addons -> 1.12.14.40
- NEI Integration -> 1.0.13
- NuclearControl -> 2.3.1a-Butt
- OpenBlocks -> 1.4.4-677
- OpenComputers -> 1.5.19.37
- OpenModsLib -> 0.8-402