From 9279ca80d7a1227f3d133b2a204db3049c9fe731 Mon Sep 17 00:00:00 2001 From: kopareigns <kopareigns@gmail.com> Date: Sun, 1 Apr 2018 00:56:06 -0400 Subject: [PATCH] Health fixes --- src/SecExp/rebellionReport.tw | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/SecExp/rebellionReport.tw b/src/SecExp/rebellionReport.tw index 62a752196c5..ef83cc9584f 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 -- GitLab