diff --git a/src/Mods/SecExp/authorityReport.tw b/src/Mods/SecExp/authorityReport.tw index cac26f84354990aea5385c4072f45b047c407492..2a03cc223e371c6cd0eab14f9bd877a527d383c9 100644 --- a/src/Mods/SecExp/authorityReport.tw +++ b/src/Mods/SecExp/authorityReport.tw @@ -120,17 +120,12 @@ Your authority is <<set _authGrowth += $arcologies[0].FSChattelReligionist>> <</if>> -<<if $arcologies[0].FSRestart >= 90 && $arcologies[0].FSNeoImperialistLaw2 == 1>> - The arcology's society is extremely stratified. The reliance on the Barons by the lower classes greatly increases your reputation. - <<set _authGrowth += $arcologies[0].FSRestart>> -<<elseif $arcologies[0].FSRestart >= 50> && $arcologies[0].FSNeoImperialistLaw2 == 1> - The arcology's society is very stratified. The reliance on the Barons by the lower classes increases your reputation. - <<set _authGrowth += $arcologies[0].FSRestart>> -<<elseif $arcologies[0].FSRestart >= 90>> - The arcology's society is extremely stratified. The reliance on the Societal Elite by the lower classes greatly increases your reputation. +<<set _elite = $arcologies[0].FSNeoImperialistLaw2 == 1 ? 'Barons' : 'Societal Elite'>> +<<if $arcologies[0].FSRestart >= 90>> + The arcology's society is extremely stratified. The reliance on the _elite by the lower classes greatly increases your reputation. <<set _authGrowth += $arcologies[0].FSRestart>> <<elseif $arcologies[0].FSRestart >= 50>> - The arcology's society is very stratified. The reliance on the Societal Elite by the lower classes increases your reputation. + The arcology's society is very stratified. The reliance on the _elite by the lower classes increases your reputation. <<set _authGrowth += $arcologies[0].FSRestart>> <</if>> diff --git a/src/uncategorized/manageArcology.tw b/src/uncategorized/manageArcology.tw index 123c752ec211394b4f1ceefe08afe5ab1f3dd45b..7dd1b11b4f6c236bbb8d4b12a237fa7e9f2e7e14 100644 --- a/src/uncategorized/manageArcology.tw +++ b/src/uncategorized/manageArcology.tw @@ -550,7 +550,7 @@ <</if>> During all battles you lost a total of <<print num($militiaTotalCasualties + $slavesTotalCasualties + $mercTotalCasualties)>> men, while scoring a total of <<print num($SecExp.core.totalKills)>> kills. <</if>> - <<if $SecExp.settings.battle.enabled === 1 && _countRebellions > 0>> + <<if $SecExp.settings.rebellion.enabled === 1 && _countRebellions > 0>> Your arcology was involved in <<print num(_countRebellions)>> rebellions. You won <<print num($SecExp.rebellions.victories)>> of them, while the rebels defeated your forces in <<print num($SecExp.rebellions.losses)>>. <</if>> </p>