From ea706b5e5d23994e457253a7b61f5669f8252327 Mon Sep 17 00:00:00 2001
From: kopareigns <kopareigns@gmail.com>
Date: Sat, 5 May 2018 20:28:02 -0400
Subject: [PATCH] Logic tweak

---
 src/uncategorized/corporationDevelopments.tw | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/uncategorized/corporationDevelopments.tw b/src/uncategorized/corporationDevelopments.tw
index 15c36730dd7..58dccd6cbaa 100644
--- a/src/uncategorized/corporationDevelopments.tw
+++ b/src/uncategorized/corporationDevelopments.tw
@@ -118,12 +118,12 @@ in total, the corporation has enslaved <<print commaNum($corpPeopleEnslaved)>> p
 <<elseif $sharePrice*_totalShares < $corpValue*0.5>> /* market cap is less than 50% of value of assets */
 	The market consensus is that your corporation is undervalued, driving share prices sharply up.
 	<<set $sharePrice = Math.ceil($sharePrice*random(105,108))/100>> /* 5-8% rise */
-<<elseif random(1,100) < $rep/1000>> /* up to 20% chance */
-	Share prices in your corporation are driven up by your reputation.
-	<<set $sharePrice = Math.ceil($sharePrice*either(101,103))/100>> /* 1-3% rise */
 <<elseif $sharePrice*_totalShares > $corpValue*1.5>> /* market cap is more than 1.5 times value of assets */
 	Investors panic as the bubble around your corporation bursts. Share prices are in free fall, and many @@.red;blame you personally@@ for their losses.
 	<<set $sharePrice = Math.ceil($sharePrice* (90 - _roll/3))/100, $rep -= 300 + Math.ceil(5 * _roll)>> /* 10-43% drop, -300-800 rep */
+<<elseif random(1,100) < $rep/1000>> /* up to 20% chance */
+	Share prices in your corporation are driven up by your reputation.
+	<<set $sharePrice = Math.ceil($sharePrice*either(101,103))/100>> /* 1-3% rise */
 <<elseif $sharePrice*_totalShares > $corpValue>> /* market cap is more than value of assets */
 	The market consensus is that your corporation is overvalued, driving share prices sharply down.
 	<<set $sharePrice = Math.ceil($sharePrice*random(92,95))/100>> /* 5-8% drop */
-- 
GitLab