However, for some reason the sub objective for my simple grant is showing the actual variable name instead of the description. I've checked everything about 100 times and I don't see anything wrong, so I was hoping maybe someone else might notice something? I modeled it after the FirstCellBlock Grant that comes with the default game.
This is what is happening, notice the Sub Objective under the Loan in the Todo list. All of the other phrases seem to be working just fine.

base-language.txt
Code: Select all
objective_grant_loansmall Loan: $25,000 + $2000 interest
objective_grant_loansmall_description The First Architect Bank would like to give you $25,000 to help get you started. Of course, we expect $27,000 in return.
objective_grant_loansmall_payback 27,000 due after 20 prisoner capacitygrants.lua
Code: Select all
function CreateGrants()
CreateSmallLoanGrant();
end
function CreateSmallLoanGrant()
Objective.CreateGrant ( "Grant_LoanSmall", 25000, -27000 )
Objective.CreateGrant ( "Grant_LoanSmall_Payback", 0, 0 )
Objective.SetParent ( "Grant_LoanSmall" )
Objective.RequireRoomsAvailable ( "Cell", 20 )
end

