diff --git a/src/Corporation/manageCorporation.tw b/src/Corporation/manageCorporation.tw
index 4b285e19ec3b4cc0ed9d96457c4690f132ce4a69..9425d60841c84de2d2b14a594527768e738d8cdf 100644
--- a/src/Corporation/manageCorporation.tw
+++ b/src/Corporation/manageCorporation.tw
@@ -374,6 +374,9 @@ You own <<print num($personalShares)>> shares while another <<print num($publicS
 	<</if>>
 	<<if $corp.SpecTimer > 0>>
 		You have recently changed specializations and the corporation needs <<if $corp.SpecTimer > 1>>$corp.SpecTimer more weeks<<else>>another week<</if>> before it can comply with another directive.
+		<<if $cheatMode == 1>>
+			[[Skip wait|Manage Corporation][$corp.SpecTimer = 0]]
+		<</if>>
 	<<else>>
 		<br>Choosing to specialize your corporation uses a specialization. The corporation can be directed to focus on the following:
 		<<if $corp.SpecRaces.length == 0 && ($corp.DivExtra > 0 || $corp.DivLegal > 0)>> /*This used to be $captureUpgradeRace, it is a general acquisition specialization*/
@@ -478,6 +481,9 @@ You own <<print num($personalShares)>> shares while another <<print num($publicS
 	<</if>>
 <<else>>
 	<br>Your corporation cannot pick a new specialization at this time.
+	<<if $cheatMode == 1>>
+		[[Unlock specialization|Manage Corporation][$corp.SpecToken++, $corp.SpecTimer = 0]]
+	<</if>>
 <</if>>
 
 <p>
diff --git a/src/gui/options/options.js b/src/gui/options/options.js
index 4558b19fbb800e4009b3efc89e4d14dc466938c2..f91cfee161a93fa85de552af6ff2ebcd29488b63 100644
--- a/src/gui/options/options.js
+++ b/src/gui/options/options.js
@@ -955,6 +955,19 @@ App.UI.optionsPassage = function() {
 					"Options"
 				)
 			);
+			if (V.corp.Announced !== 1) {
+				links = [];
+				links.push(
+					App.UI.DOM.link(
+						"Enable Corporation",
+						() => {
+							V.corp.Announced = 1;
+						},
+						[],
+						"Options"
+					)
+				);
+			}
 			App.UI.DOM.appendNewElement("div", el, App.UI.DOM.generateLinksStrip(links), "scLink2");
 		}
 		return (el);