forked from jss2a98aj/Starbound-Patch-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBugs fixed.txt
1393 lines (1315 loc) · 59 KB
/
Bugs fixed.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
Fixes for bugs that were officially fixed have been removed from the patch project and are not listed here.
////////special thanks////////
Dracyoshi and Xaliber for allowing fixes from the Parallax Fixes mod to be included.
Silver Sokolova for providing missing help command documentation and much more.
Armok, Clank8138, giantcavespider, Juni, Kherae, lunapanshiel, Nebulox, Prototype99, Ralek_Basa, rl-starbound, VenZell, and Yanazake for additional contributions.
////////typos////////
Misspelled words were corrected in the following:
//codex
•apexhistory2-codex "10 Years On" description
//dialog
•bountytarget.config Hylotl attack default one
•bountytarget.config Hylotl resist arrest by Floran one
•bountytarget.config Glitch completed arrest default five
•bountytarget.config Hylotl completed arrest default four
•bountytarget.config Novakid completed arrest default eleven
•converse.config Apex converse with Apex seven
•converse.config Avian converse with Hylotl nine
•converse.config Human converse with Apex seven
•outpost.config Glitch converse with Hylotl one
•merchant.config Glitch severe default one
•peacekeeper.config Floran out of sight default one
•peacekeeper.config Glitch can't reach one
//items
•novatier6ahead "Gambler's Hat" description
•novatier6mchest "Clockwork Jacket" description
•alienwoodsap "Alien Wood Sap" description
•cookedpoultry "Cooked Poultry" description
//objects
•jumpbooster "Jump Booster" description
•cider "Mulled Fruit Drink" Avian description
•sandstonestatueapex "Apex Sandstone Statue" Apex description
•obsidianbookcase "Large Obsidian Bookcase" description
•eyechair "Eye Chair" Apex description
•eyechair "Eye Chair" Hylotl description
•eyedoor "Eye Door" description
•eyedoor "Eye Door" Avian description
•eyetable "Eye Table" description
•eyetable "Eye Table" Floran description
•eyetable "Eye Table" Glitch description
•eyetable "Eye Table" Hylotl description
•shroomwardrobe "Mushroom Wardrobe" Apex description
•shroomwardrobe "Mushroom Wardrobe" Glitch description
•shroomwardrobe "Mushroom Wardrobe" Hylotl description
•foundryconsole "Foundry Console" description
•hivelight2 "Small Hive Light" description
•flowerspring "Spring Flower" Human description
•wheatseed "Wheat Seed" Apex description
•wildwheatseed "Wheat Seed" Apex description
•huntinglight3 "Vine Pod Light" description
•huntingbench "Crude Bench" description
•dirtyfossil2 "Fossil" description
•dirtyfossil3 "Fossil" description
•dirtyfossil4 "Fossil" description
•dirtyfossil5 "Fossil" description
•dirtyfossil6 "Fossil" description
•dirtyfossil7 "Fossil" description
•dirtyfossil8 "Fossil" description
•medievalfurnace "Medieval Furnace" description
•goldvase3 "Gold Slim Vase" description
•hylotlstyleposter "Comedy Movie Poster" description
•librarybookcaseN2damage "Damaged Bookcase" description
•frontiercoffin "Frontier Coffin" Floran description
•safe "Safe" description
•peacekeeperemblem2 "Peacekeeper Rusty Emblem" Apex description
•officecomputer "Office Computer" Human description
•protectoratesmokeprimer "smoke" Glitch description
•sunmodel "Sol Model" Hylotl description
•uranusmodel "Uranus Model" Hylotl description
•geometricswitch "Geometric Console" description
•opulentswitch "Opulent Console" description
•sereneswitch "Serene Console" description
•tier2switch "Tungsten Lever" description
•freezetrap "Cryogenic Blaster" Hylotl description
//tiles
•material 1666 tentacleblock "Tentacle Cluster" Glitch description
//quests
•kill_npc.generated default request text two
•kill_npc.generated Glitch request text two
•spread_rumors.generated default first completion text one
•spread_rumors.generated Floran next completion text one
//system_objects.config
•spacestation_peacekeeper4 "Peacekeeper Station" description
Incorrect capitalization was corrected in the following:
//dialog
•bountytarget.config Hylotl attack default one
//interface
•Space station expansion GUI "Place" button
//objects
•screen2 "Spaceship Screen" name
•baguettebox "Box of Bread" name
//stats
•ufobeamstun "UFO Abduction" label
Incorrect punctuation was corrected in the following:
//objects
•weaponupgradeanvil "Weapon Upgrade Anvil" Human description
Erroneous or duplicated characters were removed from the following:
//celestial
•names.config system name fragment three hundred sixty nine "Thalia"
•names.config system name fragment five hundred forty three "Waterosa"
//codex
•glitchhistory7-codex "Filling Up the Tank" page one
//dialog
•peacekeeperconverse.config default converse with default six
//items
•miningdrone "Mining Drone" description
•spacesuitchest "Spacesuit Chest" description
•spacesuithead "Space Helmet" description
•ophidauntfossil1 "Ophidaunt Skull" name
•trilobitefossil "Trilobite Fossil" complete set description
//objects
•erchiuscrystalsample "Erchius Crystal Sample" description
•explosivebarrel "Explosive Barrel" name
•separatoraddon "Separator Addon" Floran description
•fossildisplay1 "Small Fossil Display" Floran description
•steampunkshelf "Steampunk Shelf" Apex description
//quests
•farming.generated Glitch request one
•new_stock2.generated Floran request text one
•return_stolen.generated default request text two
Erroneous or duplicated words were removed from the following:
//dialog
•converse.config Hylotl converse with Novakid six
•converse.config Glitch converse with Floran eleven
•peacekeeperconverse.config default converse with default thirteen
•spaceconverse.config Apex converse with Apex eight
//items
•apextier3head "Insurgent's Mask" description
•currentcorn "Currentcorn" description
//objects
•ladlelarge "Large Ladle" description
•ladlesmall "Small Ladle" description
•geodechair "Geode Chair" Glitch description
•hivetable "Hive Table" Apex description
•copperbox1 "Copper Crate" Avian description
•medievalpedestal "Medieval Pedestal" Hylotl description
•displaylightbroken "Broken Display Light" Avian description
•spacebarbottom "Space Bar" description
•venusmodel "Venus Model" Glitch description
//quests
•clue_items.config papernote scan two note text
•find_clue_object "Kill bounty" previous clue text one
•find_space_clue_object "Kill bounty" previous clue text one
•cooking.generated Floran completion text one
•apex_mission1 "Find Clues to Locate the Apex Artifact" complete at start text
•avian_mission1 "Find Clues to Locate the Avian Artifact" complete at start text
•floran_mission1 "Find Clues to Locate the Floran Artifact" complete at start text
•glitch_mission1 "Find Clues to Locate the Glitch Artifact" complete at start text
•hylotl_mission1 "Find Clues to Locate the Hylotl Artifact" complete at start text
Missing words were added to the following:
//dialog
•alpaca.config default converse with default four
//objects
•tarman "Tarman" Human description
•barrellarge "Large Barrel" description
•fridge "Full-Size Fridge" Apex description
•jupitermodel "Jupiter Model" Apex description
•saturnmodel "Saturn Model" Apex description
•saturnmodel "Saturn Model" Floran description
•uranusmodel "Uranus Model" Apex description
•doombed "Doom Bed" Apex description
•opulentbed "Opulent Bed" Apex description
•opulentbed "Opulent Bed" Avian description
•wavebed "Wave Bed" Avian description
•tier3bed "Titanium Bed" Avian description
•tier4bed "Durasteel Bed" Avian description
Missing punctuation was added to the following:
//codex
•glitchmission1-codex "The Bone Dragon" description
•hylotlmission7-codex "Freedom" description
//dialog
•converse.config Hylotl converse with Floran twenty-five
•converse.config Glitch converse with Avian four
•grumble.config Glitch final complaint two
•quest.config Hylotl kidnappers dead two
//interface
•Space station expansion GUI no part selected description
•Bounty board GUI assignment not ready text
//items
•silk "Silk" description
•dyeremover "Dye Remover" description
•stationtram "Rail Tram" description
•floranfossil2 "Floran Torso" description
•floranfossil3 "Floran Legs" description
•alienwoodsap "Alien Wood Sap" description
•brainsblock "Brains" description
//monsters
•ballista "Ballista" description
//objects
•largefloorspike "Large Floor Spike" description
•smallfloorspike "Small Floor Spike" description
•ancientsmallconsole "Ancient Console" Human description
•feathers1 "Vibrant Feather Bundle" description
•scorchedcitybrokenfridge "Rusty Stylish Fridge" Human description
•weaponupgradeanvil "Weapon Upgrade Anvil" Human description
•birdgodemblem "Avian Emblem" description
•tombstone10 "Eye Tombstone" description
•dirtyfossil1 "Fossil" description
•dirtyfossil2 "Fossil" description
•dirtyfossil3 "Fossil" description
•dirtyfossil4 "Fossil" description
•dirtyfossil5 "Fossil" description
•dirtyfossil6 "Fossil" description
•dirtyfossil7 "Fossil" description
•dirtyfossil8 "Fossil" description
•fossildisplay1 "Small Fossil Display" description
•fossildisplay3 "Medium Fossil Display" description
•fossildisplay5 "Large Fossil Display" description
•sewerflooddoor "Sewer Flood Door" Floran description
•apexfightlantern "Apex Lantern" description
•librarybookcaseN2damage "Damaged Bookcase" description
•customsign "Sign" description
•wiredcustomsign "Sign" description
•peacekeeperpainting "Peacekeeper Painting" Human description
•railbumper "Rail Bumper" description
•railsensor "Rail Sensor" description
•railstop "Rail Stop" description
•railswitch "Rail Switch" description
•railtramstop "Rail Tram Stop" description
•doombed "Doom Bed" Hylotl description
•egyptiancrest "Egyptian Crest" description
•wreckcrate1 "Wrecked Crate" description
//tiles
•material 1451 brainsblock "Brains" description
•material 153 pressurisedgirder "Pressurised Girder" Glitch description
•material 20 rockbrick "Rock Bricks" Glitch description
//quests
•clue_items.config audiodisc diversion message four
•clue_items.config audiodisc planet bounty message four
•clue_items.config audiodisc scan message four
•kill_monster.generated default request text one
•new_stock2.generated Glitch request text two
•return_stolen.generated default completion text one
•share_secret.generated Glitch completion text two
•museumcurator6 "The Final Acquisition" completion text
//hunger.config
•decrease past 1 percent food message
•increase past 5 percent food message
•decrease past 5 percent food message
•decrease past 50 percent food message
•increase past 75 percent food message
•decrease past 75 percent food message
Missing hyphenation was added to the following:
•apextable "Standard Issue Table" description
•apexwardrobe "Standard Issue Wardrobe" description
•thornbee "Thornbee" description
•weaponchest "Weapon Chest" description
•cabinstooltable "Cabin Stool Table" description
Missing spaces were added to the following:
•glitchmissionmanager firstBallista radio message
Missing localization fields were added to the following:
•largefloorspike "Large Floor Spike" Glitch description
•smallfloorspike "Small Floor Spike" Glitch description
•sandstonestatueglitch "Glitch Sandstone Statue" Avian description
•dirtyfossil2 "Fossil" Apex description
•dirtyfossil2 "Fossil" Avian description
•dirtyfossil2 "Fossil" Floran description
•dirtyfossil2 "Fossil" Glitch description
•dirtyfossil2 "Fossil" Human description
•dirtyfossil2 "Fossil" Hylotl description
•dirtyfossil2 "Fossil" Novakid description
•dirtyfossil3 "Fossil" Apex description
•dirtyfossil3 "Fossil" Avian description
•dirtyfossil3 "Fossil" Floran description
•dirtyfossil3 "Fossil" Glitch description
•dirtyfossil3 "Fossil" Human description
•dirtyfossil3 "Fossil" Hylotl description
•dirtyfossil3 "Fossil" Novakid description
•dirtyfossil4 "Fossil" Apex description
•dirtyfossil4 "Fossil" Avian description
•dirtyfossil4 "Fossil" Floran description
•dirtyfossil4 "Fossil" Glitch description
•dirtyfossil4 "Fossil" Human description
•dirtyfossil4 "Fossil" Hylotl description
•dirtyfossil4 "Fossil" Novakid description
•dirtyfossil5 "Fossil" Apex description
•dirtyfossil5 "Fossil" Avian description
•dirtyfossil5 "Fossil" Floran description
•dirtyfossil5 "Fossil" Glitch description
•dirtyfossil5 "Fossil" Human description
•dirtyfossil5 "Fossil" Hylotl description
•dirtyfossil5 "Fossil" Novakid description
•dirtyfossil6 "Fossil" Apex description
•dirtyfossil6 "Fossil" Avian description
•dirtyfossil6 "Fossil" Floran description
•dirtyfossil6 "Fossil" Glitch description
•dirtyfossil6 "Fossil" Human description
•dirtyfossil6 "Fossil" Hylotl description
•dirtyfossil6 "Fossil" Novakid description
•dirtyfossil7 "Fossil" Apex description
•dirtyfossil7 "Fossil" Avian description
•dirtyfossil7 "Fossil" Floran description
•dirtyfossil7 "Fossil" Glitch description
•dirtyfossil7 "Fossil" Human description
•dirtyfossil7 "Fossil" Hylotl description
•dirtyfossil7 "Fossil" Novakid description
•dirtyfossil8 "Fossil" Apex description
•dirtyfossil8 "Fossil" Avian description
•dirtyfossil8 "Fossil" Floran description
•dirtyfossil8 "Fossil" Glitch description
•dirtyfossil8 "Fossil" Human description
•dirtyfossil8 "Fossil" Hylotl description
•dirtyfossil8 "Fossil" Novakid description
•basicbath "Basic Bath" description
•basicbathdripping "Dripping Basic Bath" description
•randomfountain "Random Fountain" Novakid description
The wording of the following was changed:
//collections
•ammonite "Ammonite Fossil" collection entry now fits in with other entries.
•trilobite "Trilobite Fossil" collection entry now fits in with other entries.
//dungeons
•tjuncNWE "T Junction N-W-E" description was changed to be slightly more descriptive.
•tjuncNSE "T Junction N-S-E" description was changed to be slightly more descriptive.
•tjuncNSW "T Junction N-S-W" description was changed to be slightly more descriptive.
•tjuncSWE "T Junction S-W-E" description was changed to be slightly more descriptive.
//items
•alpacaguardchest "Alien Alpaca Guard Real Chest" name now fits in with the other Alien Alpaca Real armor.
•alpacaguardhead "Alien Alpaca Guard Real Head" name now fits in with the other Alien Alpaca Real armor.
•alpacaguardlegs "Alien Alpaca Guard Real Legs" name now fits in with the other Alien Alpaca Real armor.
•armoredcultistchest "Cultist General Chestpiece" name now fits in with the other Cultist General armor.
•armoredcultistchest "Cultist General Chestpiece" description now fits in with the other Cultist General armor.
•armoredcultistlegs "Cultist General Leg Armour" name now fits in with the other Cultist General armor.
•armoredcultistlegs "Cultist General Leg Armour" description now fits in with the other Cultist General armor.
•swimaugment "Swimming Augment" description now fits in with other augments.
•mechbodyglitch "Arthuria Mech Body" description now references the correct material.
•sulphur "Sulphur" description now refers to itself as an element instead of a compound.
•fungusstim "Fungus Stim Pack" name now fits in with other stimpacks.
•fungusstim "Fungus Stim Pack" description now fits in with other stimpacks.
•synthesisstim "Synthesis Stim Pack" name now fits in with other stimpacks.
•synthesisstim "Synthesis Stim Pack" description now fits in with other stimpacks.
•ammonitefossil "Ammonite Fossil" name now fits in with other fossils.
•ammonitefossil "Ammonite Fossil" complete set name now fits in with other fossils sets.
•trilobitefossil "Trilobite Fossil" name now fits in with other fossils.
•trilobitefossil "Trilobite Fossil" complete set name now fits in with other fossils sets.
//objects
•hologramgalaxy "Ancient Hologram" description galaxy corrected to solar system.
•hologramgalaxy "Ancient Hologram" Apex description galaxy corrected to solar system.
•tentaclepopsmall "Small Tentacle Capsule" name had medium changed to small.
•sandstonestatuefloran "Floran Sandstone Statue" Floran description no longer references cut content.
•sandstonestatuefloran "Floran Sandstone Statue" Glitch description no longer references cut content.
•sandstonestatueglitch "Glitch Sandstone Statue" Glitch description no longer references cut content.
•coalsample "Coal Sample" description no longer refers to it as ore.
•prisilitesample "Prism Shard Sample" name no longer references cut content.
•prisilitesample "Prism Shard Sample" description no longer references cut content.
•medievallamp "Medieval Lamp" Human description was changed to be much more coherent.
•prisonshowerdripping "Dripping Rusty Shower" name now matches prisonshower "Rusty Shower"
•prisonshowerdripping "Dripping Rusty Shower" description now matches prisonshower "Rusty Shower"
•frontierbed "Frontier Bed" Human description was changed to be slightly more coherent.
•jupitermodel "Jupiter Model" Hylotl description was changed to be slightly more coherent.
•uranusmodel "Uranus Model" Human description was changed to be slightly more coherent.
•venusmodel "Venus Model" Hylotl description was changed to be slightly more coherent.
Replaced the following placeholder values:
//dialog
•peacekeeper.config Floran attack default one
//items
•shipT1 "S.A.I.L. Reboot Upgrade" name
•shipT1 "S.A.I.L. Reboot Upgrade" description
•shipT2 "Interplanetary Upgrade" name
•shipT2 "Interplanetary Upgrade" description
•shipT3 "FTL Upgrade" name
•shipT3 "FTL Upgrade" description
•shipT4 "Sparrow Upgrade" name
•shipT4 "Sparrow Upgrade" description
•shipT5 "Kestrel Upgrade" name
•shipT5 "Kestrel Upgrade" description
•shipT6 "Falcon Upgrade" name
•shipT6 "Falcon Upgrade" description
•shipT7 "Eagle Upgrade" name
•shipT7 "Eagle Upgrade" description
•shipT8 "Condor Upgrade" name
•shipT8 "Condor Upgrade" description
//stats
•nova "Nova" label
•enemynova "Nova" label
Shortned the following to not hang off of tooltips:
•protectoratedormtoiletroll "Toilet Roll Holder" name
•protectoratefigures "Turtle And Poptop Toys" name
•protectorategamesconsole "Games Console" name
•protectoratewaterdispenser "Water Dispenser" name
•protectorategardenwindchimes "Garden Wind Chimes" name
The following missing categories were added to categories.config:
•blueprint
•drone
The category assigned to the following things have been corrected so values from categories.config are used:
•The blueprint template config was set to "blueprint"
•mechblueprint3 "Simple Mech Blueprint" was set to "blueprint"
•mechblueprint4 "Advanced Mech Blueprint" was set to "blueprint"
•mechblueprint5 "High-Tech Mech Blueprint" was set to "blueprint"
•mechblueprint6 "Experimental Mech Blueprint" was set to "blueprint"
•stationtransponder "Station Transponder" was set to "tool"
•miningdrone "Mining Drone" was set to "drone"
•portable3dprinter "Portable Pixel Printer" was set to "other"
•climbingrope "Rope" was set to "tool"
•grapplinghook "Grappling Hook" was set to "tool"
•bugnet "Bug net" was set to "tool"
•laserminer "Mining Laser" was set to "tool"
•cavedetector "Cave Detector" was set to "tool"
•oredetector "Ore Detector" was set to "tool"
•relocator "Relocator" was set to "tool"
•essence "Essence" was set to "currency"
•money "Pixels" was set to "currency"
•platinumbar "Platinum Bar" was set to "craftingMaterial"
•platinumore "Platinum Ore" was set to "craftingMaterial"
•FTLrepairkit "FTL Repair Kit" was set to "upgradeComponent"
•shiprepairkit "Ship Repair Kit" was set to "upgradeComponent"
•shipT1 "S.A.I.L. Reboot Upgrade" was set to "upgradeComponent"
•shipT2 "Interplanetary Upgrade" was set to "upgradeComponent"
•shipT3 "FTL Upgrade" was set to "upgradeComponent"
•shipT4 "Sparrow Upgrade" was set to "upgradeComponent"
•shipT5 "Kestrel Upgrade" was set to "upgradeComponent"
•shipT6 "Falcon Upgrade" was set to "upgradeComponent"
•shipT7 "Eagle Upgrade" was set to "upgradeComponent"
•shipT8 "Condor Upgrade" was set to "upgradeComponent"
•protectorateflyer "Graduation Flyer" was set to "junk"
•beamaxe "Matter Manipulator" was set to "tool"
•beamaxeX "Matter Manipulator" was set to "tool"
•copperdrill "Copper Drill" was set to "tool"
•copperpickaxe "Copper Pickaxe" was set to "tool"
•diamonddrill "Diamond Drill" was set to "tool"
•diamondpickaxe "Diamond Pickaxe" was set to "tool"
•fishaxe "Fishaxe" was set to "tool"
•fossiltool "Fossil Extractor" was set to "tool"
•golddrill "Gold Drill" was set to "tool"
•goldpickaxe "Gold Pickaxe" was set to "tool"
•pickaxe "Pickaxe" was set to "tool"
•platinumdrill "Platinum Drill" was set to "tool"
•platinumpickaxe "Platinum Pickaxe" was set to "tool"
•silverdrill "Silver Drill" was set to "tool"
•silverpickaxe "Silver Pickaxe" was set to "tool"
•superfishaxe "Fishaxe" was set to "tool"
•superfishaxedrop "Fishaxe (Drops)" was set to "tool"
•chainsaw "Chainsaw" was set to "tool"
•flashlight "Flashlight" was set to "tool"
•greenflashlight "Flashlight" was set to "tool"
•hoe "Hoe" was set to "tool"
•mininglantern "Explorer's Lantern" was set to "tool"
•painttool "Paint Mode" was set to "tool"
•redflashlight "Flashlight" was set to "tool"
•wiretool "Wire Mode" was set to "tool"
•yellowflashlight "Flashlight" was set to "tool"
•inspectionmode "Inspection Mode" was set to "tool"
•scanmode "Scanning Mode" was set to "tool"
"^white;" was changed to "^reset;" on the following:
//items
•hoe "Hoe" name
•portable3dprinter "Portable Pixel Printer" name
//objects
•3dprinter "Pixel Printer" name
•campfire "Campfire" name
•capturestation "Pet Station" name
•fossilstation "Fossil Station" name
•ironanvil "Iron Anvil" name
•ironcraftingtable "Iron Crafting Table" name
•mechcraftingtable "Mech Part Crafting Table" name
•pethealingstation "Pet Healing Station" name
•pixelcompressor "Pixel Compressor" name
•railcraftingtable "Rail Crafting Table" name
•refinery "Refinery" name
•acceleratoraddon "Accelerator Addon" name
•manipulatoraddon "Manipulator Addon" name
•separatoraddon "Separator Addon" name
•craftinganvil "Anvil" name
•craftinganvil "Anvil" upgrade stage name
•craftinganvil "Forge" upgrade stage name
•craftinganvil "Replicator" upgrade stage name
•craftingfarm "Foraging Table" name
•craftingfarm "Foraging Table" upgrade stage name
•craftingfarm "Agricultural Station" upgrade stage name
•craftingfurnace "Primitive Furnace" name
•craftingfurnace "Primitive Furnace" upgrade stage name
•craftingfurnace "Industrial Furnace" upgrade stage name
•craftingfurnace "Atomic Furnace" upgrade stage name
•craftingfurniture "Wooden Workbench" name
•craftingfurniture "Wooden Workbench" upgrade stage name
•craftingfurniture "Industrial Workbench" upgrade stage name
•craftingmedical "Apothecary" name
•craftingmedical "Apothecary" upgrade stage name
•craftingmedical "Medical Station" upgrade stage name
•craftingwheel "Spinning Wheel" name
•craftingwheel "Spinning Wheel" upgrade stage name
•craftingwheel "Sewing Machine" upgrade stage name
•inventorstable "Inventor's Table" name
•inventorstable "Inventor's Table" upgrade stage name
•inventorstable "Engineer's Table" upgrade stage name
•inventorstable "Architect's Table" upgrade stage name
•wiringstation "Wiring Station" name
•woodencookingtable "Kitchen Counter" name
•flagapex "Apex Flag" description
•flagavian "Avian Flag" description
•flagfloran "Floran Flag" description
•flagglitch "Glitch Flag" description
•flaghuman "Human Flag" description
•flaghylotl "Hylotl Flag" description
•flagnovakid "Novakid Flag" description
•protectorateinfobooth "Info Booth" advice message 2
•protectorateinfobooth "Info Booth" advice message 3
•protectorateinfobooth "Info Booth" advice message 4
•protectorateinfobooth "Info Booth" advice message 5
•protectorateinfobooth "Info Booth" advice message 7
•protectorateinfobooth "Info Booth" advice message 8
•protectorateinfobooth "Info Booth" advice message 9
•protectorateinfobooth "Info Booth" advice message 11
•protectorateinfobooth "Info Booth" advice message 12
•protectorateinfobooth "Info Booth" advice message 13
•protectorateinfobooth "Info Booth" advice message 14
•researchstation "Research Station" name
•spawnerstation "Employer's Station" name
//quests
•farming.generated Glitch request text one
•kill_npc.generated default request text two
•kill_npc.generated Glitch request text two
•new_stock2.generated Glitch request text two
•museumcurator6 "The Final Acquisition" completion text
"^reset;" was added to the following things that were missing it:
//items
•inspectionmode "Inspection Mode" description
•scanmode "Scanning Mode" description
•beamaxe "Matter Manipulator" description
•beamaxeX "Matter Manipulator" description
•painttool "Paint Mode" description
•wiretool "Wire Mode" description
//quests
•kill_monster.generated default request text one
•new_stock2.generated Floran request text one
•return_stolen.generated default request text two
////////textures////////
The following textures had various issues fixed:
//animations
•Sprint was allgined within its frame boundaries.
//codex
•aviancover5 inner bezel had missing pixels added.
//cinematics
•The starfield1 layer used in teleport cinematics had erroneous black pixels removed.
//humanoid
•The Avian female body had a miscolored border pixel corrected.
•The Human hairstyle "fem41" had the coloration of a pixel changed so recoloring works correctly.
•The Human female body had a miscolored border pixel corrected.
•Koichi had headphones added to frames that were missing them.
•The Novakid back arm had a miscolored border pixel corrected.
•The Novakid front arm had the coloration of a pixel changed so recoloring works correctly.
//interface
•Drizzle weather icon had a missing pixel added to its outline.
•Codex Library menu body drop shadow transparency and color were corrected to match its header and footer.
•3D Printer menu icon border had excess black pixels removed.
•Ingredients Bottle tab icon had missing outline pixels added to the top.
•Inventory food tab icons had elements shifted so they move like other tabs when pressed.
•The Invite to Party menu header had a drop shadow added to match its body and footer.
•The Options menu body had the height of its music volume background box changed to match the SFX volume background box .
•The Bounty Board menu footer had a missing pixel added to its outline.
•The Tech Upgrade Novakid female body highlight had an inconsistency corrected.
•The Songbook scroll background had erroneous pixels removed.
•The Electric Resistance buff icon has been updated to use the newer Electrified debuff icon as a base.
•The button that opens the collections menu now has the correct border color when the UI is open.
•The server info background had erroneous sections of the drop shadow and shine corrected.
//items
•oxygentank "Oxygen Tank" texture had missing pixels in its swim frames filled in.
•supernovaglove "Supernova Gauntlet" texture was shifted by one pixels so swoosh effect line up.
•npcdeadbeataxe "NPC Deadbeat Axe" texture two was shifted by two pixels so it is held correctly.
•tungstenaxe "Tungsten Axe had an erroneous pixel removed.
•copperarmorhead "Copper Goggles" had its icon colors changes to show applied dyes.
•eyehead2 "Terrifying Eye Hat" had its icon shifted by one pixel so it does not get cut off.
•apexofficerpants "Officer Trousers" had missing waistband pixels added to two frames.
•baroncapeback "Baron's Cape" had a wrongly colored and shaped frame fixed.
•novakidjacketpants "Rustler Cut-offs" had a missing pixel added to one frame.
•chiliseed "Chilli Seed" had a missing pixel added to its outline.
•mutantback "Mutagen Back Pipe" had an entire row of missing frames added.
•humantier5mpants "Trailblazer's Greaves" had the coloration of several pixel changed so recoloring works correctly.
•novakidsuspenderspants "Suspender Pants" had two missing pixels added to one frame.
•armoredcultistchest "Cultist General Chestpiece" male and female torso had adjustments so body parts would not hang out on many frames.
•fireblockaugment "Fire Resist Augment" has been shifted one pixel over so it is aligned correctly in EPP tooltips.
•mocha "Mochaccino" had a missing pixel added to its outline.
•specialrice "Special Fried Rice" had a missing pixel added to its outline.
//monsters
•triplod "Triplod" had missing pixels filled in its hurt frame.
•bunnycritter had its eye color made consistent between frames.
•electricskimbus "Electric Skimbus" had a partially missing frame restored.
•masteroidlarge "Large Masteroid" had several miscolored pixels on two spikes corrected.
•adultpoptop "Adult Poptop" and motherpoptop "Mother Poptop" had a few miscolored pixels near the mouth corrected.
•albinoadultpoptop "Adult Albino Poptop" had several miscolored pixels near and in the mouth corrected.
•nutmidge "Nutmidge" had reversed blink and hurt eyes corrected.
•poisonnutmidge "Poison Nutmidge" had reversed blink and hurt eyes corrected.
//objects
•swampchest "Swamp Chest" frames were shifted down one pixel so it doesn't float.
•giantflowerchest "Giant Flower Chest" open frames were changed to match its closed state.
•craftingfarm "Foraging Table" had a missing pixel added to its icon outline.
•craftingwheel "Sewing Machine" had miscolored pixels on some frames corrected.
•avesmingoseed "Avesmingo Seed" had a missing pixel added to its icon outline.
•pineappleseed "Pineapple Seed" had a missing pixel added to its icon outline.
•thornplant "Thorny Plant" had a frame that was copy-pasted twice with one pixel of offset corrected.
•flagapex "Apex Flag" had cut off parts of the flag restored.
•flagfloran "Floran Flag" had grey pixels on some frames properly colored.
•torch "Torch" had parts of another sprite that were copied over to it removed and inconsistencies fixed.
•bunkerposter2 "Calming Poster" had eyebrows that were the same color as seen on the Apex sprite sheet corrected.
•peacekeeperemblem "Peacekeeper Emblem" icon was centered.
•09back "Protectorate Background" had stairs removed because tile based stairs were also used in the starting mission.
•14back "Protectorate Background" had stairs removed because tile based stairs were also used in the starting mission.
•techstation "S.A.I.L" had several corrections made to its lighting texture.
•stationdisplay "Station Display" had a missing pixel added to some frames.
//projectiles
•healingzone had pixels corrected in its outline.
//tiles
•material 7 darkwood "Timber" had a miscolored pixel on one yellow frame corrected.
•material 174 matterblock "Matter Block" had frames for alternate colors added so it is visible when recolored.
•material 1187 tentaclepipe "Large Tentacle" had frames for alternate colors added so it is visible when recolored.
•platform 311 polygonplatform "Polygon Platform" had a missing alternate color frame added.
Textures were created for the following things that had none:
//ai
•The Novakid S.A.I.L. interface static "staticNovakid"
//interface
•Refinery shine layer.
//plants
•weepingleaves tree foliage "crown3"
Current teleporter textures were applied to the following starting quest ship textures:
•Apex
•Avian
•Floran
•Glitch
•Human
•Hylotl
•Novakid
Parts of a template layer were removed from the following story cinematic small ships:
•HumanShip2
•HumanShip3
•HylotlShip2
•NovakidShip2
•NovakidShip3
New icons were made for the following things with missing or placeholder icons:
//items
•alpacaguardchest "Alien Alpaca Guard Real Chest"
•alpacaguardhead "Alien Alpaca Guard Real Head"
•alpacaguardlegs "Alien Alpaca Guard Real Legs"
•armoredcultistchest "Cultist General Chestpiece"
•armoredcultistlegs "Cultist General Leg Armour"
//objects
•organictorch "Organic Torch"
•tentacleegg "Tentacle Monster Egg"
•tentaclepopbig "Large Tentacle Capsule"
•tentaclepopmed "Medium Tentacle Capsule"
•tentaclepopsmall "Small Tentacle Capsule"
•copperrock "Copper Rock"
•copperrocksmall "Small Copper Rock"
•diamondrock "Diamond Rock"
•diamondrocksmall "Small Diamond Rock"
•goldrock "Gold Rock"
•goldrocksmall "Small Gold Rock"
•platinumrock "Platinum Rock"
•platinumrocksmall "Small Platinum Rock"
•silverrock "Silver Rock"
•silverrocksmall "Small Silver Rock"
•thornplant "Thorny Plant"
•peacekeeperemblem2 "Peacekeeper Rusty Emblem"
•protectorateamp "Protectorate Amp"
•protectoratebooks "Protectorate Books"
•protectoratebooks2 "Protectorate Books"
•protectorateclock "Protectorate Clock"
•protectoratedormtoiletroll "Toilet Roll Holder"
•protectoratefbannertorn1 "Torn Protectorate Wall Banner"
•protectoratefbannertorn2 "Torn Protectorate Wall Banner"
•protectoratefigures "Turtle And Poptop Toys"
•protectorategamesconsole "Games Console"
•protectoratehologlobe "Protectorate Hologlobe"
•protectorateradio "Protectorate Radio"
•protectoratetoolbox "Red Toolbox"
•protectoratewallbanner "Protectorate Wall Banner"
•protectoratewaterdispenser "Water Dispenser"
•protectoratewindbanner "Protectorate Wall Banner"
•protectoratewindbanner2 "Protectorate Wall Banner"
•protectoratewindbanner3 "Protectorate Wall Banner"
•protectorategardenwindchimes "Garden Wind Chimes"
//plants
•seabubbles sapling foliage
•leafy sapling foliage
•wavy sapling foliage
•kelp sapling stem
•seaweed sapling stem
•toxickelp sapling stem
Icons were improved for the following:
//items
•featherhead "Feather Headband"
//objects
•flagapex "Apex Flag"
•flagavian "Avian Flag"
•flagfloran "Floran Flag"
•flagglitch "Glitch Flag"
•flaghuman "Human Flag"
•flaghylotl "Hylotl Flag"
•flagnovakid "Novakid Flag"
•metalbarrel1 "Metal Barrel"
•metalbarrel2 "Radioactive Barrel"
•torch "Torch"
•wiredcustomsign "Sign"
Invalid texture paths were corrected on the following:
//animations
•frozen2 animation
//ai
•Floran S.A.I.L. interface static
•Novakid S.A.I.L. interface static
Frames and animations were adjusted prevent cutoff on the following:
•craftinganvil "Anvil"
•craftinganvil "Forge"
////////sounds////////
•The glue spray projectile impact sound now uses the correct directory.
////////recipes////////
•bottledhealingwater "Bottled Healing Water" had invalid recipe groups changed to valid ones so it can be made after learning its recipe from Healing Water.
////////treasure pools////////
•quagmuttHunting had an invalid action figure drop replaced with a valid one.
•glitchsewerChestTreasure had the invalid "bomb" pool reference replaced with bombs.
////////creatures and npcs////////
•sewerfly "Growfly" had a head windup frame assigned so its head would not disappear when making ranged attacks.
•bonebird "Bone Bird" had its damage team removed so it will not attack other creatures.
•snugget "Snugget" was set to fullbright to match the Novakid.
•electricyokat "Electric Yokat" had a wall crash sound added so it does not die when hitting a wall.
•The doublethorns projectile used by some monsters had its flight direction corrected to forwards.
Swansong fixes:
•Timers were added to some attacks so they will not lock up.
•Disabled contact damage during death.
•Prevent wansong blink-dasing out of the arena and restting the fight.
Outfit items were added to the following NPC types:
•villager Floran can now spawn with floransurvivalistchest "Survivalist Chest" chest items for consistency.
•villager Floran can now spawn with floransurvivalistlegs "Survivalist Legs" leg items for consistency.
•wanderingmerchant Floran can now spawn with floransurvivalistchest "Survivalist Chest" chest items for consistency.
•wanderingmerchant Floran can now spawn with floransurvivalistlegs "Survivalist Legs" leg items for consistency.
Dialog on the following NPC types was corrected so generic dialog is not used:
•outposthylotlcurator "Daichi"
•stargazer
•aviantomb
Tenant quest pools were removed from the following non-tenant NPC types:
•stargazer
•saloon
Player dialogTargets were set on the following behaviors so species specific dialog will function:
•tonauacdoor
•tonauacend
•tonauacstart
•baronstart
The correct drop tables were assigned to the following:
//walkers
•firegleap "Fire Gleap"
•poisonkingnutmidgeling "Poison King Nutmidgeling"
•icepeblit "Ice Peblit"
•poisonsmoglin "Poison Smoglin"
•electricvoltip "Electric Voltip"
//npcs
•eyeguard
•labscientist
•evilknight
•evilknightlord
•castlelord
•friendlycastleguard
•friendlycastlelord
Collision polygons were fixed on the following so they can go over one block inclines:
//boss
•penguingeneral "Penguin General"
•penguinrockettrooper "Penguin Rocket Trooper"
•penguintrooper "Penguin Trooper"
//critter
•apexscabcritter
•armadillocritter
•ashrockcritter
•avianscabcritter
•bigwormcritter
•blipcritter
•bloodtoadcritter
•bouncebagcritter
•bouncercritter
•breakercritter
•bunnycritter
•cell2critter
•cell3critter
•cellcritter
•cellnodividecritter
•chevcritter
•ciclesnailcritter
•cliffcritter
•crabcritter
•crystaltortoisecritter
•darkballcritter
•darkoneeyecritter
•darkthreeeyescritter
•darkwormcritter
•deserttortoisecritter
•eggcellcritter
•eyefriendcritter
•eyepodcritter
•firekrawlcritter
•firerockcritter
•floatinggeodecritter
•floranscabcritter
•flurlcritter
•frogcritter
•glitchscabcritter
•gloopcritter
•glowingball2critter
•glowingballcritter
•groopcritter
•harecritter
•hazmatcritter
•hedgehogcritter
•hollowcritter
•humanscabcritter
•hylotlscabcritter
•icescabcritter
•krawlcritter
•largegeodecritter
•leafscabcritter
•maggotcritter
•mousecritter
•orenibblercritter
•penguinscabcritter
•petalcritter
•poofincritter
•prismscabcritter
•quibblecritter
•reasonablecritter
•rolypolycritter
•sackbagcritter
•sealcritter
•slugbluecritter
•slugcritter
•sluggreencritter
•smallgeodecritter
•snailcritter
•snakecritter
•snooglecritter
•snorecritter
•snowbcritter
•snowymolecritter
•spidercritter
•spindycritter
•sporelingcritter
•squeekcritter
•squirrelcritter
•steamspidercritter
•swarmcritter
•symbiotecritter
•tinycrocodilecritter
•tortoisecritter
•toxiccrabcritter
•tritrotscritter
•volcanicflowercritter
•wintercritter
•wurmcritter
•yeticritter
//farming
•electricfluffalobaby "Electric Fluffalo Calf"
•firefluffalobaby "Fire Fluffalo Calf"
•fluffalobaby "Fluffalo Calf"
•icefluffalobaby "Ice Fluffalo Calf"
•poisonfluffalobaby "Poison Fluffalo Calf"
•henbaby "Baby Hen"
•robothenbaby "Baby Robot Hen"
Unique names were added to the following:
//boss
•penguingeneral "Penguin General"
•penguinrockettrooper "Penguin Rocket Trooper"
•penguintrooper "Penguin Trooper"
//bugs
•ashsprite "Ashsprite"
•aurorabee "Aurorabee"
•blueback "Blueback"
•brightstripe "Brightstripe"
•butterbee "Butterbee"
•cinderfly "Cinderfly"
•dewhopper "Dewhopper"
•driftbell "Driftbell"
•dustmoth "Dustmoth"
•fawnfly "Fawnfly"
•fireygiant "Fireygiant"
•flameroach "Flameroach"
•frostfleck "Frostfleck"
•frostfly "Frostfly"
•gasgiant "Gasgiant"
•glowbug "Glowbug"
•goldbuck "Goldbuck"
•greentip "Greentip"
•heathugger "Heathugger"
•hivehog "Hivehog"
•icetip "Icetip"
•lavahopper "Lavahopper"
•muddancer "Muddancer"
•mudstag "Mudstag"
•orphanfly "Orphanfly"
•phoenixfly "Phoenixfly"
•polarmoth "Polarmoth"
•redwing "Redwing"
•sandclown "Sandclown"
•scuttleploom "Scuttleploom"
•seahornet "Seahornet"
•shadowmoth "Shadowmoth"
•shardwing "Shardwing"
•shellcreep "Shellcreep"
•snowskater "Snowskater"
•stinkjack "Stinkjack"
•sunskipper "Sunskipper"
•thornbee "Thornbee"
•tidefly "Tidefly"
•vineclimber "Vineclimber"
•wavebird "Wavebird"
•xenofly "Xenofly"
//crawlers
•tentaclecrawler "Tentacle Crawler"
//dungeon
•apexbrainmutant "Brainy Apex Mutant"
•apexmutant "Apex Mutant"
•blackcat "Black Cat"
•floki "Floki"
•giftmonster "Animated Gift"
•giftmonstersmall "Small Animated Gift"
•glitchknight "Mechanical Jousting Horse"
•glitchspider "Mecharachnid"
•pinfriend "Pinfriend"
•megapo "Mega Po"
•micropo "Micro Po"
•po "Po"
•pogolem "Po Golem"
•sewerfly "Growfly"
//farming
•electricfluffalo "Electric Fluffalo"
•firefluffalo "Fire Fluffalo"
•fluffalo "Fluffalo"
•electricfluffalobaby "Electric Fluffalo Calf"
•firefluffalobaby "Fire Fluffalo Calf"
•icefluffalobaby "Ice Fluffalo Calf"
•poisonfluffalobaby "Poison Fluffalo Calf"
•icefluffalo "Ice Fluffalo"
•mooshi "Mooshi"
•mooshibaby "Mooshi Calf"
•poisonfluffalo "Poison Fluffalo"
//flyers
•tentaclebomb "Tentacle Bomb"
•tentaclegnat "Tentacle Gnat"
•tentaclespawner "Tentacle Spawner"
//generated
•bonebird "Bone Bird"
//ghosts
•nautileech "Nautileech"
•tentacleghost "Tentacle Ghost"
//mechdrone
•multidrone "Swarm Drone"
•plasmadrone "Plasma Drone"
•shielddrone "Shield Drone"
//mission
•bigapehologram "Big Ape Hologram"
•minidrone "Minidrone"
//pets
•petbunny "Bunny"
•petcat "Cat"
•petorbis "Orbis"
•crasberry "Crasberry"
•petball "Little Red Ball"
•piglett "Piglett"
•petsnake "Snake"
•snugget "Snugget"
•petweasel "Weasel"
//unsorted
•miningdrone "Mining Drone"
//walkers
•punchy "Punchy"
•tank "Penguin Tank"
•tentaclebarrier "Tentacle Barrier"
•tentacleclam "Tentacle Clam"
Unique descriptions were added to the following:
//boss