Contracts made with CC are offered in Mission Control, but not shown in the Alt+F12 > Contracts > Offered screen (stock contracts are shown). This also causes a downstream bug with kOS-Career not being able to see these contracts as offered, and thus cannot accept them.
From the screenshot, the stock game contracts are shown. But the Contract Configurator created contract under NASA is not shown.
In kOS using the career addon:
print "Active:".
FOR C1 IN ADDONS:CAREER:ACTIVECONTRACTS() {
print " " + C1:TITLE.
print C1.
}
print "All:".
FOR C2 IN ADDONS:CAREER:ALLCONTRACTS() {
print " " + C2:TITLE.
}
print "Offered:".
FOR C3 IN ADDONS:CAREER:OFFEREDCONTRACTS() {
print " " + C3:TITLE.
}

Contracts made with CC are offered in Mission Control, but not shown in the Alt+F12 > Contracts > Offered screen (stock contracts are shown). This also causes a downstream bug with kOS-Career not being able to see these contracts as offered, and thus cannot accept them.
From the screenshot, the stock game contracts are shown. But the Contract Configurator created contract under
NASAis not shown.In kOS using the career addon: