VARIOUS: Various changes prior to release 2.2 (#271)

See PR #271 description
This commit is contained in:
Snarling
2022-12-29 20:28:53 -05:00
committed by GitHub
parent 24ad342203
commit fb1f95c26e
310 changed files with 3768 additions and 2583 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ export function Corporation(): React.ReactElement {
function addCorporationResearch(): void {
if (!Player.corporation) return;
Player.corporation.divisions.forEach((div) => {
div.sciResearch.qty += 1e10;
div.sciResearch += 1e10;
});
}
+1 -1
View File
@@ -38,7 +38,7 @@ export function SaveFile(): React.ReactElement {
function doRestore(): void {
const save = JSON.parse(saveFile);
// TODO: Continue here.
// TODO unplanned: "Continue here". Unknown what this todo is for.
console.error(save);
}