From f7f22ac7efdd9951461baf1fa3f9abf48bdaf2c7 Mon Sep 17 00:00:00 2001 From: Tesseract1234567890 Date: Wed, 2 Jun 2021 16:12:46 -0400 Subject: [PATCH] Fixed typos in error messages --- src/Locations/LocationsHelpers.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Locations/LocationsHelpers.tsx b/src/Locations/LocationsHelpers.tsx index 9204bef2c..93631f0e0 100644 --- a/src/Locations/LocationsHelpers.tsx +++ b/src/Locations/LocationsHelpers.tsx @@ -200,7 +200,7 @@ export function createUpgradeHomeCoresPopup(p: IPlayer): void { const currentCores = p.getHomeComputer().cpuCores; if (currentCores >= 8) { dialogBoxCreate(<> - You've have the maximum amount of CPU cores on your home computer. + You have the maximum amount of CPU cores on your home computer. ); return; } @@ -263,7 +263,7 @@ export function createUpgradeHomeRamPopup(p: IPlayer): void { const homeComputer = p.getHomeComputer(); if (homeComputer.maxRam >= CONSTANTS.HomeComputerMaxRam) { dialogBoxCreate(<> - You've have the maximum amount of RAM on your home computer. + You have the maximum amount of RAM on your home computer. ); return; }