forked from MJRLegends/ExtraPlanets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG AND FUTURE_PLANS.txt
1033 lines (924 loc) · 37.5 KB
/
CHANGELOG AND FUTURE_PLANS.txt
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
TODO = Not yet done
? = Maybe
===========================================Future Updates=============================================
======================================================================================================
===========================================Released Updates===========================================
v2.0.0
*Fixed Kepler22 Material Plains Biomes Ids being the same (YOU WILL NEED TO RE-GENERATE YOUR CONFIG FILE)
*Fixed issue #258
*Fixed Kepler22b cobblestone to stone smelting recipe
*Added missing Platinum Ore to Platinum Ingot smelting recipe
*Resized all celestial body textures to 16 x 16
*Clean up/Fix Formatting
*Changed Ceres, Venus Biome ids due to a conflict with a very rare mc biome (YOU WILL NEED TO RE-GENERATE YOUR CONFIG FILE)
v1.9.9
*Some work for support for Galaxy Space v1.2.0 for compatibility
*Removed not needed console logging
*Updated lang files to match 1.8+ changes
*Fixed missing entries in de_DE.lang file
*Moved entries around in lang files
*Tweaks to comments on mod compatibility support config options
v1.9.8
*Added da_DK.lang (Thanks to Jin16) (Part translated)
*Added missing ore dict entries & Fixed ore dict entries
*Fixed issue #242
*Updated lang files to match 1.8+ changes
*Updated lang files for some entries that were missing planet name prefix, Removed WIP tags
*Updated de_DE.lang (Thanks to DerMilchkarton)
v1.9.7
*Fixed issue #213
*Fixed issue #227
*Fixed issue #211
*Updated de_DE.lang (Thanks to DerMilchkarton)
v1.9.6
*Update es_ES.lang
*Fixed OpenGL Error spam
*Updated lang files to match 1.8+ changes
*Add/Tweaks to comments on all Config options
*Added fire bomb Config option
*Removed not needed config options
*Added Diamond, Gold, Coal, Iron, Emerald Grit Blocks
*Added Config options for Villages on all Planets
*Fixed issue #207
*Changed Kepler22b World gen classes to match others part
*Added Kepler22b Diamond, Coal, Iron, Gold, Emerald Plains Biomes
*Added Config options for Villages on all Moons
v1.9.5
*Updated lang files to match 1.8+ changes
*Converted Io over to multi biome system
*Added Io Ash Lands Biome
*Added Io Burning Plains Biome
*Added Ravines Moons & Planets that had it missing
*Updated zh_CH.lang (Thanks to sdjnmxd)
*Removed a unused variable
*Added Config option for Custom Fog Effect on Jupiter, Uranus, Saturn,
*Added tool tips to Mars and Venus Rover to say how to use them
*Added Tool tips for Custom Wafers to tell the player where they are
*Changed Mars/ Venus Rover Schematics textures
*Updated lang files to match 1.8+ changes
*Fixed certain kits giving free parachutes and shield controllers
*Added Block of Nickel &* Platinum with recipes
*Converted Oberon over to multi biome system
*Added Oberon Large Mountain Biome
*Added Oberon Valleys Biome
*Fixes for Kepler22b world gen to match 1.8+ versions
*Added Ice to Triton Ice Sea Biome
*Made Buckets for liquid register all the time
*Added missing buckets for fluids
*Added recipes to make resources from certain buckets of fluids
*Fixes for Kepler22b Platinum Block
*Fixed spelling error in the Platinum Ore within the code
*Added textures for new buckets
*Updated lang files
*Fixes for Oberon Biomes
*Fixed sky renders for Iapetus, Oberon, Titania
v1.9.4
*Fixed some compatibility issues with other addons
*Fixed missing comments in config
*Fixed spelling error in config
*Added AmunRa Compatibility
*Updated comments on config options
v1.9.3
*Fixed Neptune Stonebricks stairs recipe/Fixed issue #188
*Updated lang files to match 1.8+ changes
*Clean up/Fix Formatting
*Updated Celestial Selection screen to match 1.8+
*Added has Dungeon information to the Celestial Selection screen
*Updated lang files to match 1.8+ changes
v1.9.2
*Fixed issue #187
*Fixed issue #186
v1.9.1
*Updated change log file
*Refactoring of some packages names
*Re-enabled custom Celestaial Section Screen, Auto disable custom Celestaial Section Screen on Galaxy Space compatibility config option enabling
*Added names for each Planet on the Celestaial Selection Screen
*Changes to a Few Planets orbit time and phaseshift amounts
*Added Clouds, Fog to Jupiter
*Tweaks to lighting effects, weather
*Added light fog to Uranus
*Changed Uranus Fog colour
*Added fog to Saturn & Neptune
*Changes to Mercury Sky Provider
*Changes to Mercury & Ceres Sky Provider
*Changes to Jupiter Sky Provider
*Changes to Saturn Sky Provider
*Fixes for MC 1.7.10
*Added moons to Jupiter's sky
*Added moons to Saturn's sky
*Added moons to Eris's sky
*Added moons to Neptune's sky
*Changes to Ceres Sky Provider
*Added moons to Pluto's sky
*Changes to Uranus Sky Provider
*Converted all remaining casting of Math.Pie to use variables from the Constants class
*Changed some math over to using Constants variables
*Clean up
*Updated lang files to match 1.8+ changes
*Fixed few missing localized names
*Added Kepler22b Wastelands Biome
*Added blocks, world gen for the Kepler22b Wastelands Biome
*Fixes for over generating world gen on Kepler22b
*Fixes for Kepler22b Wastelands Biome
*Reordered the Kepler22b world gen to match 1.8+ versions
*Fixed Planets Sky Providers
*Fixed Liquid Caramel fluid not being registered
*Fixed missing harvest levels for blocks
*Changed Kepler22b Tools material levels
*Added rings back to Saturn and Uranus
*Fixed spelling error in a class
v1.9.0
*Removed unneeded code
*Fixed warning in TileEntitySolar
*Palladium Blocks -> Palladium Ingots fix
*Clean up
*Added Volcanic Rock Feature to IO
*Added Red Sand Feature to Jupiter
*Fixes for last commit
*Added Config option for Generating Jupiter Sky Gen
*Added/Ported Equipment kits
*Added Basic More Planets Compatibility option to the Config
*Added comments to Mod Compatibility options
*Added Basic Extended Planets Compatibility option to the Config
*Fixes for Mars & Venus Config option
*Moved Galacticraft Version checker to pre init
*Cleaned up Client Proxy class
*Added comments to Client Proxy class
*Removed not needed class
*Fixed textures on Equipment kits
*Fixed Tier 2 - 4 Thermal Padding/ Thermal Cloths names and textures
*Updated lang files
*Added MessageUtilities class for outputting errors and debug message)
*Fixed issue #180
*Fixed Achievements unlocalized language names
*Fixes for last commit
*Fixed few missing textures
*Fixed few missing localized names
*Few last missing textures, localized names fixes
*Few small fixes for NEI Support
v1.8.9
*Added de_DE.lang (Thanks to Suum)
*Fixes for missing textures
*Added ##NEEDS TRANSLATE## tags to all lines that need translating
*Update to match MC 1.10.2 lang files
*Fixed Vehicle Charger front texture
*Updated lang files to fix missing entries
v1.8.8
*Fixed some events not running
*Started work on changing all textures for items and blocks to support files from 1.8+
*Started work on changing all names for items and blocks to support files from 1.8+
*Started porting missing blocks and items
*Work on backporting biomes
*Fixed world gen stuff
*Backported fluids from 1.8+
*Backported more biomes
*Added Hyrdocarbon fluid
*Fixed Unlocalized Names, Updated lang files
*Added recipes to convert Decorative Blocks 2 to other colours using dyes
*Changed last added recipes to use all blocks not just white
*Added recipe for 1 Dense Ice to 9 Ice Blocks & 9 Ice to 1 Dense Ice
*Fixed for DecorativeBlocks2 blocks
*Work on fixing/adding world gen features to Mercury, Ceres, Jupiter, Saturn, Uranus, Neptune
*Fixed for Jupiter Lakes and Fixes for All custom lakes world gen
*Improvements for textures for Callisto, Deimos, Europa, Ganymede, Oberon, Phobos, Titania, Triton blocks
*Converted Titan over to multi biome system
*Changed Titan Surface, Sub Surface, Stone textures
*Added Titan Methane Hills Biome
*Added Titan Methane Surface Rock
*Added Titan Methane Sub Surface Rock
*Added Titan Rocks
*Added Titan Methane Sea Biome
*Tweaks for Blocks added in last commit
*Tweaks to Titan Ore Textures
*Converted Triton over to multi biome system
*Added Triton Ice Lands Biome
*Added Triton Ice Sea Biome
*Fixed/Added missing world gen features
*Fixed Triton & Titan biomes
*Converted Saturn over to multi biome system
*Added Saturn Nuclear Land Biome
*Added Saturn Hydrocarbon Sea Biome
*Converted Jupiter over to multi biome system
*Added Jupiter Magma Sea Biome
*Converted Neptune over to multi biome system
*Added Neptune Radio Active Water Sea Biome
v1.8.7
*Updated ru_RU.lang (Thanks to rykllan)
*Fixes a typo in Config
*Corrects a small typo
*Fixed some ore gen on multiple planets/moons & Fixed some gravels not generating
v1.8.6
*Added Brown Sticks
*Added a recipe to change Brown Planks to Brown Sticks
*Changed the day lengths on all the Planets
*Changed the day length for Kepler22b
*Updated es_ES.lang (Thanks to Spellkaze)
v1.8.5
*Fixed issue #139
v1.8.4
*Fixed issue #104
v1.8.3
*Updated ru_RU.lang (Thanks to rykllan)
*Fix Kepler 22b being inaccessible with More Planets Advanced compatibility enabled
v1.8.2
*Added Fire Bat Boss to Jupiter
*Changed spawn rate of some world gen features on Jupiter
*Updated lang files
*Added ru_RU.lang (Thanks to rykllan)
v1.8.1
*Update tr_TR.lang (Thanks to kralrindo1)
*Improved some of the Rocket Schematics
*Updated lang files
*Updated lang files (Removed WIP tags from blocks and items since they are no longer needed)
*Fixed Dark Iron Ingot and Block of Dark Iron recipes
*Fixed Palladium Ingot and Block to Palladium recipes
*Updated lang files (Added Tool tip to the Diamond Wafer)
*Improvements for the Tier 1 & 2 Batteries textures
v1.8.0
*Fixed issue #122
*Fixed wrong gravity of old style gravity on Iapetus*
*Fixes for Solar Panels (Issue #111)
*Added custom textures for most Tiered GC machines
*Improvements to some item textures
*Clean up
v1.7.9
*Refactor Config Categories to Constants class (YOU WILL NEED TO RE-GENERATE YOUR CONFIG FILE)
*Added missing planet textures
*Removed random texture files that were in the resource folder
*Added Red, White Decorative blocks and made them be used in the Basic Hideout on Jupiter
*Updated lang files
*Refactor common inventory code into default methods
*Clean up
*Refactor common itemblock code into default methods
*Changes to Gravity and Fall Damage Modifier For Planets (With Config option to change it back to the old way!)
*Changes to Gravity and Fall Damage Modifier for Moons to match Planets values (With Config option to change it back to the old way!)
*Refactor most (float) references to PI to use Constants. (Match GC changes)
*More Refactoring of Info to Constants class
*Made mcmod.info version be filled in via build.gradle file
v1.7.8
*Fixed recipe issue/crash
v1.7.7
*Fixed issue #110
*Fixed issue of being unable to grow Kepler22b Maple Green and Brown Saplings
*Changes for all Kepler22b Leaves (Will remove old ones due to a complete change)
*Updated lang files
v1.7.6
*Fixed Kepler22b Red Sand being punchable with hand
*Fixes for issue #108
v1.7.5
*Fixed issue #107
*Tweaks to Jupiter Village generation
v1.7.4
*Added a sky feature to Jupiter
*Fixed Mars Rover recipe being broken
*Fixed Powered Vehicle Infinite driving issue
v1.7.3
*Fixed crash when disabling mercury in config
*Clean up
*Config: Tweaked and Added loads of new Config options
v1.7.2
*Fixed dedicated server crash
v1.7.1
*Refactor world gen features to worldgen pack from world package
*Fixed crash issue when disabling Eris via config (Micro Blocks registering)
*Set minimum version checker to build 493 of Galacticraft to make sure people are using the correct version(To stop issues with machines)
*Fixed dedicated server crash with getting rendering type on machines
v1.7.0
*Fixed Dungeon crash issue
v1.6.9
*Fixed biome conflict with IO and Kepler22b Red Desert Biome
v1.6.8
*Fixed Venus Rover wheel issue
*Improved battery textures
*Added Fire bricks texture
*Unhide Fire Bricks from NEI
*Matched GC change of Backport desync dungeon positions for my dungeon
v1.6.7
*Updated Galacticraft API to latest
*Added 16 new Decorative Blocks
*Changed biome id's (YOU WILL NEED TO RE-GENERATE YOUR CONFIG FILE)
*Added Mars Rover (WIP)
*Added Packet Networking setup
*Added Powered Charging Pad (WIP)
*Added Vehicle Changer block (WIP)
*Added Electric Parts
*Updated lang files
*Added some of the missing textures
*Added new Schematics, new Electirc Parts from Rovers
*Added Custom trees to 3 of the biomes on Kepler22b
*Added Recipe for Mars Rover in the NASA Workbench
*Added NEI Handler for the Mars Rover recipe
*Clean up
*Added Ultimate Fuel Loader & Refinery
*Added Config options for all machines
*Added Venus Rover (WIP)
*Added Advanced & Ultimate Compressors/Decomperssors with Config options
*Fixes for Advanced Fuel Loader GUI
*Tweaks to world gen on Mercury
*Added a Custom Blue Tower to Kepler22b
*Added a Custom Structure of Frozen Nitrogen Pile to Neptune
*Added Red Sand, Red Sandstone blocks
*Added a Red Sand Biome to Kepler22b generation
*Tweaks to stop Huts generating in the Red Sand Desert for Kepler22b
*Added a Custom Structure of Tower of Desh to Ceres
*Tweaked Desh Tower spawn rate to 1 in 100
*Network tweaks
*Fixed texture issue with the Iron & Diamond Apples
*Added Venus/Mars Rover Recipes & NEI support.
*Added Venus/Mars RoverSchematics to correct dungeons
*Matched GC change of Backport desync dungeon positions for my dungeons
*Added Lead ingot. Two Lead ores on Deimos, Phobos
*Fixed/Changed some recipes
v1.6.6
*Fixed crash issue on dedicated server
v1.6.5
*Fixed issue #81
v1.6.4
*Updated Galacticraft API to latest
*Reduce network traffic & Clean up
*Improvements to rockets
v1.6.3
*Added missing recipe Advanced Fuel loader
*Fixed recipe issue
*Updated zH_CH.lang (Thanks to Joccob)
v1.6.2
*Fixed more issues with rockets and Tier 2/3 launch pads on launch
v1.6.1
*Fixed Rockets not destroying the launch pads on launch
v1.6.0
*Incressed generation of Lava on Venus and Magma on Jupiter
*Added Ash block, Ash shards, Sledge Hammer item, Grinding Wheel item, Volcanic Shard, and Volcanic Ingot
*Added Fire Bomb block & entity
*Added Magnesium Shard item
*Added Custom Tier 4 - 10 Rocket models (Thanks to LegendGamer for the models)
*Added Tier 2 & 3 Launch Pads (WIP) & Advanced Fuel Loader (WIP)
*Tier 4 - 10 Rocket fixes for new Launch pads
*Updated lang files
*Made Ash blocks spawn in Volcanos
*Added recipe for Ash block, Ash shards, Sledge Hammer item, Grinding Wheel item, Volcanic Shard, and Volcanic Ingot
*Added Block of Titanium
*Added Block of Titanium Recipes and Tier 2 & 3 Launch pad recipes
*Added Stone Brick Stairs for all the planets (Except Kepler22b)
*Tier 4 - 10 Rocket rendering fixes/tweaks
*Added Blue, Red, Purple, Yellow, Green Sticks
*Fixed config issue #78
*Improvements to the lighting effect on Jupiter
v1.5.7
*Fixed Oberon, Titania, Iapetus ores furnace recipes
*Clean up
*Fixes for recipes
*Added missing rocket gui's for Oberon, Titania, Iapetus
*Fixed Thermal Cloth recipes
v1.5.6
*Cleaned up the version number to a more organized version system
*Fixes/Updated lang files
*Fixed the Magma Fluid not burning you when in it
*Fixed Jupiter Basic Hideout generation
*Changed the chance of Jupiter Basic Hideout generation
*Removed debug information that was left in
*Setup harvest levels for all of the main blocks (Might change)
*Added Block versions of ingots/gem back to ingots/gems recipes
*Added Kepler22b planks to crafting table recipe
*A few config fixes
*Clean up
*Fixed Neptune boss dropping the wrong key
v1.0 Pre-5.5
*Fixed some of the moons being the wrong tier/accepting the wrong tier
*Fixes for Achievements
*Changes to planet thermal levels, Fixes #67
*Changes to moon thermal levels
*Added Oberon, Titania, Iapetus moons, Updated lang files, a few fixes
*A few fixes and added Haumea as a unreachable planet
*Updated Galacticraft API to latest
v1.0 Pre-5.0
*Added Basic Hideout's to Jupiter
*Added Blue, Red, Purple, Yellow, Green, Brown Wooden Huts to Kepler22b
*Added Evolved Snowman Boss to Neptune to replace the Creeper Boss, and Added Small Snowballs Projectiles
*Added Evolved Ghast Boss to Saturn to replace the Creeper Boss
*Clean up
*Fixed Magma Cube boss not jumping correctly
*Fixed issue with the Dungeons to where the bosses get stuck in the roof
*Hide Carbon, Red Gem wafers from NEI when MorePlanets Compatibility is enabled
*Added Config option to disable Custom Batteries, Custom Apples, Custom Canned Food
*Few fixes for Kepler Systems being turned off via config
*Fixes for Thermal Padding Config option
*Added Config options for Generating Venus Volcanos, Uranus Ice Spikes & Igloos
*Added basic compatibility config option for MorePlanets addon
*Added Nuclear Bomb Config option
*Fixed Compressed Zinc Recipe & Fixed Tier 8 Rocket Booster & Tier 8 Heavy-Duty Plate recipe
*Fixes for Machine, Tools, Armour, Compressor, Smelting, Wafer recipes when MorePlanets Compatibility to enabled
*Clean up/organised entities classes
*Updated lang files
*Changed Tier 2 - 4 Thermal Padding recipes & Added Tier 2 - 4 Thermal Cloth
*Fixed Block of Mercury & Dark Iron not having a recipe
*Updated Galacticraft API to latest
v1.0 Pre-4.0
*Fixed Mars Space Station Sky Provider
*Updated lang files (Thanks to JrantKing)
*Fixed/changed moons thermal, gravity, fuel modifier levels
*Updated Galacticraft API to latest
*Few sky colour changes for moons
*Added Block of Mercury & Dark Iron
*Improvements of some textures (Items & Blocks) mainly Tiered Rocket parts
v1.0 Pre-3.9
*Fixed some Localization typos (Thanks to MrNinja93)
*Few fixes for hopefully issue #60
*Updated lang files
*Added Kepler22b Planet Achievement and fixed a typo in the Achievement Tier 4 Rocket one
*Few fixes for Achievements
v1.0 Pre-3.8
*Changed Tier 2 Thermal Padding (And above) to protect you from uranium ore
*Added more blocks to the MicroBlocks support
*Added the ability to use Kepler22b Planks for Sticks and Wooden Buttons, Pressure Plates, Doors, Signs recipes
*Added some more Achievements
*Added config options for enabling and disabling entities such as monsters
v1.0 Pre-3.7.6
*Added Blue & Red & Purple & Yellow & Green Diamond Tools
*Added Blue & Red & Purple & Yellow & Green Diamond Armour
*Added Blue & Red & Purple & Yellow & Green Diamond Tools Recipes
*Added Blue & Red & Purple & Yellow & Green Diamond Armour Recipes
*Added Green Short, Med, Tall Grass
*Added Maple Green, Brown Trees
*Added Maple Green, Brown Planks
*Added Green Short, Med, Tall Grass to Kepler22b Plains biome
*Added Maple Green, Brown Trees to Kepler22b Plains biome
*Fixed #52
*Fixed Tier 10 rockets aparts not being craftable
*Changed spawning rates of Kepler22b Trees
*Fixed issues with Kepler22b Logs
*Improved the Kepler22b Maple Leaves textures
*Fixes for rockets tier 7 - 9 but reverts the fix for the shaking of the tier 7 - 9 rockets
*Fixed bugs and improvements to Igloos and added new Advanced Igloos
*Some small fixes
*Clean up
And more....
v1.0 Pre-3.7.5
*Fixed #49
v1.0 Pre-3.7.4
*Fixed #47 #45 #43
*A few other small fixes
*Fixed rocket lang for entity
v1.0 Pre-3.7.3
*Fixed #44 #46
v1.0 Pre-3.7.2
*Balancing Space station recipes to require more items from the planet that the station is orbiting
*Fixed missing language localization
*Fixed Ore Dictionary for Kepler22b Blocks
*Removed Kepler22b Planks off Ore Dictionary ready for later changes
*Fixed issue with Kepler22b Grass texture not showing outside of dev environment due to a typing error
v1.0 Pre-3.7.1
*Fixed #40 #37
*Updated es_ES.lang (Thanks to Spellkaze)
v1.0 Pre-3.7
*Added Tier 10 Rocket
*Added Tier 10 Rocket Items
*Added Tier 10 Dungeon to Eris
*Added Tier 10 Key
*Added Tier 10 Treasure Chest
*Added Tier 10 Schematic
*Added Eris Default Creeper Dungeon Boss
*Added Kepler 22b Blocks
*Added Kepler 22b Village
*Added Kepler 22b to Config
*Added Kepler 22b Sky Providers
*Added Kepler 22b Events
*Added Kepler 22b Basic Ores
*Added Kepler 22b Plains Biome
*Added Kepler 22b Plains Biome ID to the Config
*Added Kepler 22b Blue Maple Tree, Purple Maple Tree, Red Maple Tree, Yellow Maple Tree Biomes ID to the Config
*Added Blue Maple Tree, Purple Maple Tree, Red Maple Tree, Yellow Maple Tree Trees to Kepler 22b
*Added Blue Maple Tree, Purple Maple Tree, Red Maple Tree, Yellow Maple Tree Biomes to Kepler 22b
*Added Blue, Purple, Red, Yellow Grass
*Added Blue & Red & Purple & Yellow Short, Med, Tall Grass to Kepler 22b
*Added Blue & Red & Purple & Yellow & Green Diamond Ores to Kepler 22b
*Added Blue & Red & Purple & Yellow & Green Diamond Gems to Kepler 22b
*Added Dense Coal Ore to Kepler 22b
*Added Iron Apple and Notch Iron Apple
*Added Kepler22b Space station
*Added Dark Iron Ore/Ingot & Compressed Dark Iron to Eris
*Added Loot/Spawner Dungeons to Kepler22b
v1.0 Pre-3.6.13
*Added a Galacticraft minimum version enforcer as a solution for commit 804d122
v1.0 Pre-3.6.12
*Fixed Fossils not spawning on Mercury, Ceres, Eris, Pluto
*Fixed Tungsten not spawning still
*Rebalanced ore gen amounts and levels
v1.0 Pre-3.6.11
*Fixed Fossils not spawning on Mercury, Ceres, Eris, Pluto
*Fixed Tungsten not spawning still
*Rebalanced ore gen amounts and levels
v1.0 Pre-3.6.10
*Fixed Tungsten not spawning on Pluto
*Fixed crash when changing the silicon type in the GC config
v1.0 Pre-3.6.9
*Small clean up/Clean up unneeded classes
*Tweaked the orbit times for planets/moons
*Tweaked Neptune, Saturn Sky Providers
*Added the moons to the Sky Provider for Uranus
v1.0 Pre-3.6.8
*Fixed the Space Stations not spinning with the thrusters
*Updated Sky Providers for Planets/Moons/Space Stations & Added a new Client Handler
*Code Cleanup
v1.0 Pre-3.6.7
*Fixed issue #28
*Fixed issue #25
*Code cleanup
v1.0 Pre-3.6.6
*Added Blocks of Uranium, Red Gem, Blue Gem and White Gem
*Added Blocks of Uranium, Red Gem, Blue Gem and White Gem recipes
*Added Blocks of Uranium, Red Gem, Blue Gem and White Gem to Forge Micro blocks support
*Added Red Gem Armour
*Added Red Gem Armour recipes
*Added Blue Gem Armour
*Added Blue Gem Armour recipes
*Added White Gem Armour
*Added White Gem Armour recipes
*Added Advanced & Ultimate Batteries
*Added Advanced & Ultimate Batteries recipes
*Fixed Ore Dictionary issue because i messed up
v1.0 Pre-3.6.5
*Added Tungsten Armour
*Added Tungsten Armour recipes
*Added Zinc Armour
*Added Zinc Armour recipes
*Added Mercury Armour
*Added Mercury Armour recipes
*Added Uranium Armour
*Added Uranium Armour recipes
*Added Zinc Tools (Pickaxe, Shovel, Axe, Hoe, Sword)
*Added Zinc Tools (Pickaxe, Shovel, Axe, Hoe, Sword) recipes
*Added Mercury Tools (Pickaxe, Shovel, Axe, Hoe, Sword)
*Added Mercury Tools (Pickaxe, Shovel, Axe, Hoe, Sword) recipes
*Added Uranium Tools (Pickaxe, Shovel, Axe, Hoe, Sword)
*Added Uranium Tools (Pickaxe, Shovel, Axe, Hoe, Sword) recipes
*Added a option to the config for Zinc,Mercury and Uranium armour/tools
*Rebalanced Armor Materials
*Added all the ores to the Ore Dictionary
*Added all the ingots/gems to the Ore Dictionary
*Clean up
*Added blocks of materials to Ore Dictionary
v1.0 Pre-3.6.4
*Fixed Issue #22
*Updated to latest version of Galacticraft API
v1.0 Pre-3.6.3
*Fixed planets not requiring the correct tiers of rockets (Issue #20)
*Updated zh_TW.lang (Thanks to JrantKing)
*Updated zh_CN.lang (Thanks to JrantKing)
v1.0 Pre-3.6.2
*Fixed issue #17
*Fixed Magnesium block texture not showing
v1.0 Pre-3.6.1
*Fixed part 2 of issue #10 (ice slime texture)
*Fixed issue #16
*Fixed a possible crash with creative tabs
*Fixed issue to where the armour would be still enabled when disabling a main planet
*Added some more comments to the config options
*And a few more fixes
v1.0 Pre-3.6
*Added Blocks of Carbon, Palladium, Zinc, Mercury, Crystal, Magnesium, and Tungsten
*Added Blocks of Carbon, Palladium, Zinc, Mercury, Crystal, Magnesium, and Tungsten recipes
*Added Blocks of Carbon, Palladium, Zinc, Mercury, Crystal, Magnesium, and Tungsten to Forge Micro blocks support
*Changed some of the space station recipes
*Added Red Gem Ore
*Added Smelting recipe for Red Gem Ore
*Added Red Gem Item
*Added Red Gem Ore to Jupiter
*Added Red Gem Tools (Pickaxe, Shovel, Axe, Hoe, Sword)
*Added Red Gem Tools (Pickaxe, Shovel, Axe, Hoe, Sword) recipes
*Added a option to the config for Red Gem armour/tools
*Added Blue Gem Ore
*Added Smelting recipe for Blue Gem Ore
*Added Blue Gem Item
*Added Blue Gem Ore to Neptune
*Added Blue Gem Tools (Pickaxe, Shovel, Axe, Hoe, Sword)
*Added Blue Gem Tools (Pickaxe, Shovel, Axe, Hoe, Sword) recipes
*Added a option to the config for Blue Gem armour/tools
*Added White Gem Ore
*Added Smelting recipe for White Gem Ore
*Added White Gem Item
*Added White Gem Ore to Uranus
*Added White Gem Tools (Pickaxe, Shovel, Axe, Hoe, Sword)
*Added White Gem Tools (Pickaxe, Shovel, Axe, Hoe, Sword) recipes
*Added a option to the config for White Gem armour/tools
*Added Tungsten Tools (Pickaxe, Shovel, Axe, Hoe, Sword)
*Added Tungsten Tools (Pickaxe, Shovel, Axe, Hoe, Sword) recipes
*Added a option to the config for Tungsten armour/tools
*Added Carbon, Diamond, Titanium, Red Gem, Blue Gem, White Gem wafers
*Added Circuit Fabricator recipes for Carbon, Diamond, Titanium, Red Gem, Blue Gem, White Gem wafers
*Added Stone bricks for Mercury, Venus, Ceres, Jupiter, Saturn, Uranus, Neptune, Pluto, Eris
*Added Stone bricks for Mercury, Venus, Ceres, Jupiter, Saturn, Uranus, Neptune, Pluto, Eris recipes
*Fixed issue #14
*Done some code clean up
*Made it so you can just disable planets and the space stations will auto disable
*Added the dungeon spawner's to the hidden list for NEI so they dont show up as null blocks within NEI
*Added NEI Support for Carbon, Diamond, Titanium, Red Gem, Blue Gem, White Gem wafers Circuit Fabricator recipes
v1.0 Pre-3.5.1
*Fixed Rocket recipes not working for tier 7 and above see issue #11
*Updated zh_TW.lang (Thanks to JrantKing)
*Updated zh_CN.lang (Thanks to JrantKing)
*Added Dungeon bricks to Forge Micro blocks support
*Some code clean up
v1.0 Pre-3.5
*Added New Achievements System
*Added basic Forge Micro blocks support
*Fixed issue with biome not being the space biome on space stations
*Fixed issue where a player could use any tier of rocket to get to the space stations
*Fixed the Diamond Apple texture
*Added NEI Recipe support for rockets
*Added option to the config to disable achievements
*Added option to the config to disable NEI Recipe support for rockets
*Added option to the config to disable Forge Micro blocks support
*Added comments to sections in the config that were missing them
*Added forced dependence on Forge 10.13.4.1558 and above
*Updated Lang files with new achievements (Language localization needs to be applied)
v1.0 Pre-3.4
*Added Ravines to Mercury, Venus, Ceres, Jupiter, Saturn, Pluto, Eris, IO, Europa, Deimos, Phobos, Triton, Ganymede, Callisto, Titan, Rhea
*Added Titan Gravel
*Added Rhea Gravel
*Added Caves to IO, Europa, Deimos, Phobos, Triton, Ganymede, Callisto, Titan, Rhea
*Added Volcanos to Venus with a possible chance of loot chests spawning in them
*Updated the volcanic rock texture
*Changed Magnesium ore generation to Y level 0 - 60
*Added lightlevel to fluid glowstone (Thanks to quentfr21)
*Updated/Added a few lang files (Thanks to JrantKing)
v1.0 Pre-3.3.2
*Fixed Space stations
*Rebalanced the fuel usages for each space station
*Rebalanced rocket tier required for each space station
*Added more config options to disable machines and slab and stairs and ore dictionaries
*When disabling a planet that has a space station the space station will now auto disable it self so it doesn't cause a crash and require you to disable it manually
v1.0 Pre-3.3.1
*Fixed spawners in the chest room in dungeons because galacticraft entities had their names changed. Note will be still broken in Galacticraft planets/moons because they need to apply the fix as well
v1.0 Pre-3.3
*Fixed rockets not fueling
*Update zh_CN.lang
v1.0 Pre-3.2
*Rebalanced all the Fuel usages for planets/moons
*Fixed Diamond Apple texture
*Moved Kepler solar system 47 so they work better with another addons
*Added Kepler Solar Systems and Kepler Stars names to the lang files
*Added Kepler Planets Textures
*Added Makemake Planet Texture
*Added config option for Kuiper Belt and Makemake to disable them
*Fixed crash when accessing the creative tab after disabling some of the main planet's
v1.0 Pre-3.1
*Removed the Galacticraft API from the zip that I forgot to remove in 1.0-Pre 3.1 because it could cause issues if its left in there
v1.0 Pre-3
*Added Tier 9 Rocket
*Added Tier 9 Rocket Items
*Added Tier 9 Dungeon to Pluto
*Added Tier 9 Key
*Added Tier 9 Treasure Chest
*Added Tier 9 Schematic
*Added Tungsten ore to Pluto
*Added Compressed Tungsten and Tungsten Ingot
*Added Default Pluto Creeper Boss (Entity)
*Added Default Pluto Creeper Boss for the Dungeon on Pluto
*Changed Eris to require the Tier 9 Rocket
*Added Rhea(Saturn Moon)
*Added Rhea Blocks
*Added Rhea Village
*Added Rhea to Config
*Added Titan(Saturn Moon)
*Added Titan Blocks
*Added Titan Village
*Added Titan to Config
*Added Rhea and Titan Sky Providers
*Added Rhea and Titan Events
*Added Rhea and Titan Basic Ores
*More work on changing Blocks/Items to use metadata.
*Loads of code clean up
*Changed Pluto to a main planet within the config
*Added Kepler 22, 47, 62, 69 Solar Systems and all its planets (planets are unreachable in till there added)
*Updated to Forge 10.13.4.1558
*Updated to latest Galacticraft API
*Added Makemake planet (planet is unreachable in till its added)
*Added Thermal Protection Tier 2 - 4
*Rebalanced ThermalLevelModifier on each planet and moon
*Fixed crash with Ceres
v1.0 Pre-2.8 - Small Bug fix
*Fixed Uranus Boss giving the wrong schematic
*Fixed Crystal Ore furnace recipe
*More work on changing Blocks/Items to use metadata.
*Added Enable/Disable options to the Config for each space stations
v1.0 Pre-2.7 - Small Bug fix
*Fixed Server Side crash
*Improved the power gen for the Hybrid and Ultimate Solar Panels at night
*Added all the Moons ores to the Ore Dictionary
*Added all the Planets/Moons Blocks back to the creative tabs
*Loads of code clean up
*More work on changing Blocks/Items to use metadata.
*Fixed a texture issue with the Diamond Apple
v1.0 Pre-2.6 - Small Bug fix
*Fixed Smelt Ore Recipes
*Added Smelt Ore Recipes for ores on all the moons
v1.0 Pre-2.5 - Small Bug fix
*Enabled all sky providers for all the moons
*Fixed a few of the ore's not spawning on planets
*Fixed the blocks on planets not dropping the correct blocks
v1.0 Pre-2
*Fixed Tier 6 Schematic being generated in Tier 4 Venus Dungeon
*Fixed Boss Bars for Venus and Uranus Dungeon Bosses
*Fixed Caves for Mercury, Venus, Ceres, Jupiter, Saturn, Pluto, Uranus, Neptune, Eris
*Changed All Blocks for Venus, Jupiter, Saturn, Uranus, Neptune to use metadata.
v1.0 Pre-1
*Added Evolved Ice Cube Boss (Entity)
*Added Evolved Magma Cube Boss (Entity)
*Added Evolved Ice Cube Boss to Uranus Dungeon
*Added Evolved Magma Cube Boss to Venus Dungeon
*Added Ganymede (Jupiter Moon)
*Added Ganymede Blocks
*Added Ganymede Gravel
*Added Ganymede Village
*Added Ganymede to Config
*Added Callisto (Jupiter Moon)
*Added Callisto Blocks
*Added Callisto Gravel
*Added Callisto Village
*Added Callisto to Config
*Added Oxygen Supply Model System to most of the Entities
*Added IO, Europa, Deimos, Phobos, Triton, Ganymede, Callisto Sky Providers
*Added IO, Europa, Deimos, Phobos, Triton, Ganymede, Callisto Events
*Added IO, Europa, Deimos, Phobos, Triton, Ganymede, Callisto Basic Ores
*Added Space Stations for all the planets
*Added Igloo's to Uranus which includes loot
*Changed All Blocks for Mercury, Ceres, Pluto, Eris, IO, Europa, Deimos, Phobos, Triton, Ganymede, Callisto to use metadata.
*Loads of code clean up
*Fixed some Compatibility issues with other addons
v0.10 Beta - Sorry for the delay was busy with life things :D
*Added IO (Jupiter Moon)
*Added IO Blocks
*Added IO Gravel
*Added IO Village
*Added IO to Config
*Added Europa (Jupiter Moon)
*Added Europa Blocks
*Added Europa Gravel
*Added Europa Village
*Added Europa to Config
*Added Deimos(Mars Moon)
*Added Deimos Blocks
*Added Deimos Gravel
*Added Deimos Village
*Added Deimos to Config
*Added Phobos (Mars Moon)
*Added Phobos Blocks
*Added Phobos Gravel
*Added Phobos Village
*Added Phobos to Config
*Added Triton (Neptune Moon)
*Added Triton Blocks
*Added Triton Gravel
*Added Triton Village
*Added Triton Config
*Added Achievements for going to IO and Europa and Deimos and Phobos and Triton
*Added Can of Food(Porkchop, Fish, Salmon, Chicken, Beef)
*Made changes to the sky on all the planets
*Added Volcanic Rock
*Added Volcanic Rock to Venus
*Added Dense Ice
*Added Dense Ice to Uranus
*Added Frozen Nitrogen
*Added Frozen Nitrogen to Neptune
*Added Nuclear Bomb
*Added Fossils Block
*Added Fossils to Mercury, Ceres, Pluto, Eris
*Added Diamond Apple
*Added Notch Diamond Apple
*A lot of code clean up
*Fixed crash when going to Achievements gui in the menu's when disabling planets
*Fixed issues with blocks and items and problems happening when disabling planets
v0.9.2
*Fixed crash that is happening when running on a server with Extra Utilities
v0.9.1
*Fixed Crafting recipes for Solar Panel's, Slab's, Stairs, and Advanced Refinery
*Fix problem with lag when liquid on uranus are turning to ice
v0.9 Beta
*Added Hybrid Solar Panel
*Added Ultimate Solar Panel
*Added Slabs and Stairs for Dungeon bricks
*Added Achievements for killing each Dungeon Boss
*Added Uranium Ore/Ingots
*Added Uranium Ore to Ceres
*Made all the Gravels drop flint
*Added Liquid Glowstone
*Added Liquid Magma
*Added Liquid Nitrogen
*Added Liquid Frozen Water
*Added Liquid Salt
*Added Liquid Magma Lakes to Jupiter
*Added Liquid Glowstone Lakes to Saturn
*Added Liquid Nitrogen Lakes to Neptune
*Added Liquid Frozen Water Lakes to Uranus
*Added Liquid Salt Lakes to Ceres
*Added a option to the Config to change the surface and sub-surface blocks to liquid for Saturn, Jupiter, Neptune, Uranus
v0.8 Beta
*Added Mercury, Venus, Ceres, Jupiter, Saturn, Pluto and Eris Gravel
*Added Mercury, Venus, Ceres, Jupiter, Saturn, Pluto and Eris Gravel to Planets Generation
*Changed All Planets Surface/Sub-Surface/Stone blocks hardness and resistance levels
*Added Slabs for each Planet Stone Block
*Added Stairs for each Planet Stone Block
*Added Enabling/Disabling Tiered Rockets in the Config
*Added Enabling/Disabling Tools in the Config
*Added Enabling/Disabling Armor in the Config
*Fixed All Errors that are caused when disabling certain things in the config
*Added Sections/Categories in to the Config for more organisation
*Changed the Sun size in the sky providers for Mercury and Venus
*Changed Kuiper belt Ring
v0.7 Beta
*Added Advanced Refinery (Faster to process and is more efficient)
*Added Evolved Enderman(Entity)
*Added Evolved Enderman to Mercury, Venus, Ceres, Jupiter, Saturn, Uranus, Neptune, Pluto and Eris
*Added Evolved Blue Creeper(Entity)
*Added Evolved Blue Creeper to Uranus, Neptune
*Added Evolved Red Creeper(Entity)
*Added Evolved Red Creeper to Jupiter, Saturn
*Added Evolved Power Skeleton(Entity)
*Added Evolved Power Skeleton to Jupiter, Saturn, Uranus, Neptune, Pluto and Eris
*Added Evolved Blaze (Entity)
*Added Evolved Blaze to Mercury, Venus, Jupiter, Saturn
*Changed Colors of all the Spawn Eggs for ExtraPlanets entities
*Fixed a few minor issues when disabling planets
*Organised/Cleaned up the code more within the addon
*Fixed Issue with the mcmod.info file
v0.6.1 Beta
*Fixed Rocket name issue in NASA Workbench as it was set to tier 7 not tier 8
*Fixed Texture Issues with Ceres not showing on Jupiter, Missing texture on Iapetus Planet in Planet Selection Menu
*Fixed Server based crash
*Fixed issue with the Tier 8 Rocket wasnt crafting right
v0.6 Beta
*Added Evolved Witch(Entity)
*Added Evolved Witch to Mercury and Ceres and Juptier and Saturn and Eris
*Changed it so the player suffocates regardless of the Mob suffocation option in the config
*Fixed Bug with Nickel Battery Texture not working for other people
*Added Water Lakes to Neptune
*Added Tier 8 Rocket
*Added Tier 8 Rocket Items
*Added Tier 8 Dungeon to Neptune
*Added Tier 8 Treasure Chest/Key
*Added Neptune Creeper Boss
*Added Tier 8 Schematic
*Added Achievements for entering each planet
*Fixed Problem where it would give you the wrong rocket back when using the tier 6/7 rocket
*Re-Textured Neptune Blocks
*Changed Pluto and Eris to require tier 8 rocket
*Fixed a few name/language issues
*Added Triton, Callisto, Europa, Ganymede, Io, Deimos, Phobos, Iapetus, Rhea, Titan, Oberon, Titania as unreachable Moons(Which will be added in future updates)
*Added Kuiper Belt as an unreachable Planet(Which will be added in future updates)
v0.5.2 Beta
*Fixed Missing Textures
*Added Config option for turning mob suffocation on/off
v0.5.1 Beta
*Fixed Missing Textures
*Fixed All Copper, Tin, Iron ore's smelting
v0.5 Beta
*Added Pluto
*Added Pluto Village
*Added Pluto Blocks
*Added Pluto to the Config
*Added Eris
*Added Eris Village
*Added Eris Blocks
*Added Eris to the Config
*Added Ceres
*Added Ceres Village
*Added Ceres Blocks
*Added Ceres to the Config
*Added Evolved Ice Slime (Entity)
*Added Evolved Magma Cube (Entity)
*Added Evolved Ice Slime to Uranus and Neptune
*Added Evolved Magma Cube to Venus and Saturn and Jupiter
*Changed it so Normal Mobs/Players take damage on all the planets
v0.4 Beta
*Re-texture some of the planet blocks
*Added All types of Armour
*Added All types of Armour Crafting Recipes