From 268f706664389ff338c848335f89cd0867a4d7ad Mon Sep 17 00:00:00 2001
From: Arkerthan <arkerthan@gmail.com>
Date: Sun, 22 Mar 2020 12:35:46 +0100
Subject: [PATCH] fixes

---
 src/004-base/arcologyBuilding.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/004-base/arcologyBuilding.js b/src/004-base/arcologyBuilding.js
index 1bc74651476..de02692060f 100644
--- a/src/004-base/arcologyBuilding.js
+++ b/src/004-base/arcologyBuilding.js
@@ -140,10 +140,10 @@ App.Arcology.Cell.BaseCell = class extends App.Entity.Serializable {
 
 					if (V.rep >= 18000) {
 						const repDiv = document.createElement("div");
-						repDiv.classList.add("choices", "clear-formatting");
+						repDiv.classList.add("clear-formatting");
 
 						const repPrice = Math.clamp(price / 2, 0, 18000);
-						repDiv.append("You have so much political capital that you can spend reputation to acquire ownership by spending reputation.",
+						repDiv.append("You have so much political capital that you can spend reputation to acquire ownership by spending reputation. ",
 							App.UI.DOM.passageLink("Use reputation", "Main",
 								() => {
 									repX(-(repPrice), "capEx");
-- 
GitLab