New guy on the forums here, I just wanted to say this pack is great. Tons of fun stuff to use.
Now, I know it may seem a little ambitious for a new forum member to suggest a coding patch, but in the puddle jumper's init.lua file, there's a pretty serious bug that affects the life support part of it. Basically, if you have LS disabled but left RD enabled for Advanced Duplication purposes, spawning a jumper results in a massive flood of LUA errors from the code trying to place oxygen, coolant, and energy in your nonexistant suit, thus making it practically unusable without enabling life support or disabling resource distribution. However, I figured out a bug fix that is exactly two characters long.
Original code:
Code:
--####### Keep giving us air, coolant etc.
if(self.HasRD) then
if(self.CanHaveLS) then
self:LSSupport()
Modified code that makes the spam go away and probably makes the jumper's LS functionality still work (haven't tested it, but I don't see why it wouldn't work):
Code:
--####### Keep giving us air, coolant etc.
if(self.HasLS) then
if(self.CanHaveLS) then
self:LSSupport()
Posting the whole thing would be stupid as it'd fill the entire page, so I just posted the relevant section. To add it yourself, find the puddle jumper's init.lua file in the CAP folder and do a search for LSSupport, swapping the (self.HasRD) with (self.HasLS) to fix the spam error when using RD without LS.
I hope this small change can be added to the jumper in future releases so everyone can use a bug free jumper :)