Skip to content
Snippets Groups Projects
Commit 48f33d30 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'rep-fix' into 'pregmod-master'

fix degeneracy bug

See merge request !4161
parents 8b8683b2 9a1a120c
No related branches found
No related tags found
1 merge request!4161fix degeneracy bug
...@@ -105,6 +105,8 @@ On formal occasions, you are announced as $PCTitle. ...@@ -105,6 +105,8 @@ On formal occasions, you are announced as $PCTitle.
<</if>> <</if>>
<<if _repLoss > 500>> <<if _repLoss > 500>>
<<set _repLoss = 500>> <<set _repLoss = 500>>
<<elseif _repLoss < 0>>
<<set _repLoss = 0>>
<</if>> <</if>>
<<set $enduringRep += Math.trunc(_repLoss*0.1)>> <<set $enduringRep += Math.trunc(_repLoss*0.1)>>
<<else>> <<else>>
...@@ -680,7 +682,7 @@ On formal occasions, you are announced as $PCTitle. ...@@ -680,7 +682,7 @@ On formal occasions, you are announced as $PCTitle.
<<set $enduringRep = 0>> <<set $enduringRep = 0>>
<<elseif $PC.degeneracy > 75>> <<elseif $PC.degeneracy > 75>>
There are @@.red;severe rumors@@ about you spreading across the arcology. There are @@.red;severe rumors@@ about you spreading across the arcology.
<<run repX(-200*$PC.degeneracy, "PCactions")>> <<run repX(-20*$PC.degeneracy, "PCactions")>>
<<elseif $PC.degeneracy > 50>> <<elseif $PC.degeneracy > 50>>
There are @@.red;bad rumors@@ about you spreading across the arcology. There are @@.red;bad rumors@@ about you spreading across the arcology.
<<run repX(-10*$PC.degeneracy, "PCactions")>> <<run repX(-10*$PC.degeneracy, "PCactions")>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment