From 81e780ac23cbe8e2888ae645046bdfd443f45b1a Mon Sep 17 00:00:00 2001
From: Arkerthan <arkerthan@mailbox.org>
Date: Thu, 15 Sep 2022 17:59:34 +0200
Subject: [PATCH] Fix econRate settings in introSummary

---
 src/events/intro/introSummary.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/events/intro/introSummary.js b/src/events/intro/introSummary.js
index 5af30d6e908..b430224af99 100644
--- a/src/events/intro/introSummary.js
+++ b/src/events/intro/introSummary.js
@@ -781,7 +781,7 @@ App.Intro.economy = function(isIntro) {
 		.addValue("Vanilla", 0, () => V.difficultySwitch = 0)
 		.addValue("Easy", 1, () => V.difficultySwitch = 1)
 		.addValue("Default", 2, () => V.difficultySwitch = 1)
-		.addValue("Hard", 3, () => V.difficultySwitch = 1);
+		.addValue("Hard", 4, () => V.difficultySwitch = 1);
 
 	/* Not functional yet
 	All the things you need to run your arcology are getting more expensive
-- 
GitLab