diff --git a/src/SecExp/rebellionReport.tw b/src/SecExp/rebellionReport.tw index 62a752196c54b95347d683b32d7511ce25051721..ef83cc9584fcc30e8bf0127334e2df2857b59178 100644 --- a/src/SecExp/rebellionReport.tw +++ b/src/SecExp/rebellionReport.tw @@ -519,7 +519,7 @@ <<if $Concubine.health >= -60>> <<set $Concubine.health -= 30>> <<else>> - <<set $Concubine.health -= Math.abs(90 - $Concubine.health)>> + <<set $Concubine.health = -90>> <</if>> <</if>> <</if>> @@ -582,7 +582,7 @@ <<if $Bodyguard.health >= -60>> <<set $Bodyguard.health -= 30>> <<else>> - <<set $Bodyguard.health -= Math.abs(90 - $Bodyguard.health)>> + <<set $Bodyguard.health = -90>> <</if>> <</if>> <</if>> @@ -689,7 +689,7 @@ <<if $Concubine.health >= -60>> <<set $Concubine.health -= 30>> <<else>> - <<set $Concubine.health -= Math.abs(90 - $Concubine.health)>> + <<set $Concubine.health = -90>> <</if>> <</if>> <</if>> @@ -797,7 +797,7 @@ <<if $Concubine.health >= -60>> <<set $Concubine.health -= 30>> <<else>> - <<set $Concubine.health -= Math.abs(90 - $Concubine.health)>> + <<set $Concubine.health = -90>> <</if>> <</if>> <</if>> @@ -831,4 +831,4 @@ <</if>> <<set $slaveRebellion = 0>> <<set $citizenRebellion = 0>> -<<set $tension = Math.clamp($tension - random(50,100), 0, 100)>> +<<set $tension = Math.clamp($tension - random(50,100), 0, 100)>> \ No newline at end of file