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
@@ -11,9 +11,9 @@ Set material export data
```typescript
exportMaterial(
sourceDivision: string,
sourceCity: string,
sourceCity: CityName | `${CityName}`,
targetDivision: string,
targetCity: string,
targetCity: CityName | `${CityName}`,
materialName: string,
amt: number,
): void;
@@ -24,9 +24,9 @@ exportMaterial(
| Parameter | Type | Description |
| --- | --- | --- |
| sourceDivision | string | Source division |
| sourceCity | string | Source city |
| sourceCity | [CityName](./bitburner.cityname.md) \| \`${[CityName](./bitburner.cityname.md)<!-- -->}\` | Source city |
| targetDivision | string | Target division |
| targetCity | string | Target city |
| targetCity | [CityName](./bitburner.cityname.md) \| \`${[CityName](./bitburner.cityname.md)<!-- -->}\` | Target city |
| materialName | string | Name of the material |
| amt | number | Amount of material to export. |