Fixed typos in error messages

This commit is contained in:
Tesseract1234567890 2021-06-02 16:12:46 -04:00
parent a1e0d40963
commit f7f22ac7ef

@ -200,7 +200,7 @@ export function createUpgradeHomeCoresPopup(p: IPlayer): void {
const currentCores = p.getHomeComputer().cpuCores; const currentCores = p.getHomeComputer().cpuCores;
if (currentCores >= 8) { if (currentCores >= 8) {
dialogBoxCreate(<> 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; return;
} }
@ -263,7 +263,7 @@ export function createUpgradeHomeRamPopup(p: IPlayer): void {
const homeComputer = p.getHomeComputer(); const homeComputer = p.getHomeComputer();
if (homeComputer.maxRam >= CONSTANTS.HomeComputerMaxRam) { if (homeComputer.maxRam >= CONSTANTS.HomeComputerMaxRam) {
dialogBoxCreate(<> 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; return;
} }