From de113a7b926b3d15b8f6f6d42420cc82f2a9d606 Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Mon, 17 May 2021 17:56:31 -0400 Subject: [PATCH] City hall no longer just has nothing when you can't create corp --- src/Locations/ui/SpecialLocation.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Locations/ui/SpecialLocation.tsx b/src/Locations/ui/SpecialLocation.tsx index a24653857..b0a7f6046 100644 --- a/src/Locations/ui/SpecialLocation.tsx +++ b/src/Locations/ui/SpecialLocation.tsx @@ -108,7 +108,11 @@ export class SpecialLocation extends React.Component { } renderCreateCorporation(): React.ReactNode { - if (!this.props.p.canAccessCorporation()) { return null; } + if (!this.props.p.canAccessCorporation()) { + return <> +

A business man is yelling at a clerk. You should come back later.

+ ; + } return (