From 382cca39139fb9c62aba07385aea80d4a845a18c Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Mon, 2 Jan 2023 15:17:20 -0500
Subject: [PATCH] Fix labels for dairy free range/restrained settings.

---
 src/facilities/dairy/dairy.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/facilities/dairy/dairy.js b/src/facilities/dairy/dairy.js
index 3c16b0e062e..b2589c70ec4 100644
--- a/src/facilities/dairy/dairy.js
+++ b/src/facilities/dairy/dairy.js
@@ -500,13 +500,13 @@ App.Facilities.Dairy.dairy = class Dairy extends App.Facilities.Facility {
 				options: [
 					{
 						get text() { return `The cows are restrained only when necessary, allowing obedient cows freedom to range around.`; },
-						link: `Deactivate`,
+						link: `Free range`,
 						value: 0,
 						handler: App.UI.DialogHandler(() => this._getEffect("restraints")),
 					},
 					{
 						get text() { return `The cows are restrained when being milked, giving the machines full play.`; },
-						link: `Free range`,
+						link: `Restrain cows`,
 						value: 1,
 						handler: App.UI.DialogHandler(() => this._getEffect("restraints")),
 					},
-- 
GitLab