-
Notifications
You must be signed in to change notification settings - Fork 217
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
Actually award reputation for landing on the runway correctly #2479
Conversation
Has this been tested? |
|
Landing reputation gets paid out correctly. The problem in issue #2401 is that confidence also shows up as a reward in the contract completion screen. This is unexpected, as confidence is not listed as a reward in mission control when accepting the contract. It only shows reputation. What issue #2401 actually requires to fix it is that confidence no longer shows up in the contract completion screen. Unless it is actually intended that landing on the runway also awards confidence, which this PR wouldn't fix anyways. The relevant CC documentation on the current configs being a valid syntax is over here: https://github.com/jrossignol/ContractConfigurator/wiki/Expressions#special-identifiers In this case the reference to the root node is also quite important, as it is specifically referring to the @/rewardReputation in the root node, and not to @/OptVesselGroup/rewardReputation. |
Thanks for clearing that up!
I believe that the contracts are only meant to provide reputation, but these contracts were originally written long before confidence was added. In my opinion, they should give some extra confidence, as reputation only serves to mildly increase your subsidy.
Where is confidence awarded in contracts anyway? Is it just an automatic calculation based on the amount of reputation/science that the contract gives? |
As far as I know, "@/rewardReputation" is not a valid name.Potentially fix #2401