-
Notifications
You must be signed in to change notification settings - Fork 279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BDB Generic Configs #2823
Open
SkyPhoenix999
wants to merge
7
commits into
KSP-RO:BDBStagingBranch
Choose a base branch
from
SkyPhoenix999:BDB-Generic-Configs
base: BDBStagingBranch
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
BDB Generic Configs #2823
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
bf5ef8e
BDB Generic Configs
SkyPhoenix999 bc9656a
Add files via upload
SkyPhoenix999 a2d385b
Delete GameData/RealismOverhaul/RO_SuggestedMods/Bluedog_DB/Generic/W…
SkyPhoenix999 4a98726
Improve generic configs
Capkirk123 fa7aa95
Tank Mass Fix
SkyPhoenix999 a245e91
Don't bulk-patch RF tanks pls
Capkirk123 d154e50
- The FAR Update
SkyPhoenix999 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do not do this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
idk what else is going to work then, because the RF Config keeps adding mass to the tanks, for small parts like Able the added mass makes it almost unusable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have not experienced this issue. They may be configured wrong, or it may be BDB itself adding them mass (BDB multiplies the mass of parts as a function of the solar system rescale, a feature which should be removed with the next release but has not yet been)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've installed that fix you made for the mass.
From everything I've checked it's not BDB, it's the RF config, the basemass part of each TANK_DEFINITION will add mass to the tanks once propellant is set on the tank.
Deleting the tank in the editor gets rid of the added mass, but adding the tank back will add the mass back as well, this isn't because of the fuel either, the drymass is just raised.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then it's a config issue on the RF side.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well bluedog_DeltaB_Tank has two tanks in it, one of which is a service module, which would explain why it's so heavy. I suspect the rest are also config issues of a similar nature.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Checking the configs (The Able PR configs) there's only one Tank. I'm not sure why there would be a second service module tank in there. #2807
Will test further soon.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And there you have it.
Base mass is being set in the RFTank module, which means RF will apply base mass as it sees fit.
RFTanks should be configured one of two ways. Either basemass should be set to -1, in which case RF will not try to alter the tank mass in any way, or basemass should be set to a sensible value for an empty structural shell, and RF allowed to add the appropriate tank mass such that the total dry mass adds up to the appropriate value. I would much prefer the latter method be used, but the former is acceptable for dumb fuel tanks and such if you don't want to spend the time setting the mass appropriately.
basemass should be set to -1 on a part-by-part basis, and not bulk patched to -1, since I prefer to configure parts using the second method.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, Able has been fixed here. Any other dry mass issues should be fixed in the same manner.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made General corrections to the Able configs here with your suggestions and additions, corrected tank masses and relocating waterfall to match with the rest of the BDB PRs