diff --git a/src/neighbor/neighborGrid.js b/src/neighbor/neighborGrid.js index 04582e12aeba86edcc6fe0ca05b3f2000f972404..85aabe5c3578860d504d5de1bbd9d5f651c09e3c 100644 --- a/src/neighbor/neighborGrid.js +++ b/src/neighbor/neighborGrid.js @@ -93,7 +93,7 @@ App.Neighbor.Grid = class { function ownershipFrag() { let frag = document.createDocumentFragment(); const owned = arcID === 0 || arcology.government === "your trustees" || arcology.government === "your agent"; - const yourPercent = owned ? `${arcology.ownership}%` : `${arcology.PCminority}%`; + const yourPercent = arcID === 0 ? `${arcology.ownership}%` : `${arcology.PCminority}%`; const hostilePercent = owned ? `${arcology.minority}%` : `${arcology.ownership}%`; const challengerPercent = owned ? null : `${arcology.minority}%`; const publicPercent = `${100 - (arcology.ownership + arcology.minority + arcology.PCminority)}%`;