mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 15:43:49 +01:00
update and fix (#1225)
Co-authored-by: Caldwell <15591472+Caldwell-74@users.noreply.github.com>
This commit is contained in:
parent
703e7c52ae
commit
a3f9a5c21e
@ -41,5 +41,6 @@ export interface Corporation extends WarehouseAPI, OfficeAPI
|
|||||||
| [levelUpgrade(upgradeName)](./bitburner.corporation.levelupgrade.md) | Level an upgrade. |
|
| [levelUpgrade(upgradeName)](./bitburner.corporation.levelupgrade.md) | Level an upgrade. |
|
||||||
| [nextUpdate()](./bitburner.corporation.nextupdate.md) | Sleep until the next Corporation update has happened. |
|
| [nextUpdate()](./bitburner.corporation.nextupdate.md) | Sleep until the next Corporation update has happened. |
|
||||||
| [purchaseUnlock(upgradeName)](./bitburner.corporation.purchaseunlock.md) | Unlock an upgrade |
|
| [purchaseUnlock(upgradeName)](./bitburner.corporation.purchaseunlock.md) | Unlock an upgrade |
|
||||||
|
| [sellDivision(divisionName)](./bitburner.corporation.selldivision.md) | Sell a division |
|
||||||
| [sellShares(amount)](./bitburner.corporation.sellshares.md) | Sell Shares. Transfer shares from the CEO to public traders to receive money in the player's wallet. |
|
| [sellShares(amount)](./bitburner.corporation.sellshares.md) | Sell Shares. Transfer shares from the CEO to public traders to receive money in the player's wallet. |
|
||||||
|
|
||||||
|
28
markdown/bitburner.corporation.selldivision.md
Normal file
28
markdown/bitburner.corporation.selldivision.md
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||||||
|
|
||||||
|
[Home](./index.md) > [bitburner](./bitburner.md) > [Corporation](./bitburner.corporation.md) > [sellDivision](./bitburner.corporation.selldivision.md)
|
||||||
|
|
||||||
|
## Corporation.sellDivision() method
|
||||||
|
|
||||||
|
Sell a division
|
||||||
|
|
||||||
|
**Signature:**
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
sellDivision(divisionName: string): void;
|
||||||
|
```
|
||||||
|
|
||||||
|
## Parameters
|
||||||
|
|
||||||
|
| Parameter | Type | Description |
|
||||||
|
| --- | --- | --- |
|
||||||
|
| divisionName | string | Name of the division |
|
||||||
|
|
||||||
|
**Returns:**
|
||||||
|
|
||||||
|
void
|
||||||
|
|
||||||
|
## Remarks
|
||||||
|
|
||||||
|
RAM cost: 20 GB
|
||||||
|
|
@ -34,6 +34,13 @@ export class SleeveInfiltrateWork extends SleeveWorkClass {
|
|||||||
this.nextCompletionPair.promise = new Promise((r) => (this.nextCompletionPair.resolve = r));
|
this.nextCompletionPair.promise = new Promise((r) => (this.nextCompletionPair.resolve = r));
|
||||||
return this.nextCompletionPair.promise;
|
return this.nextCompletionPair.promise;
|
||||||
}
|
}
|
||||||
|
finish() {
|
||||||
|
if (this.nextCompletionPair.resolve) {
|
||||||
|
this.nextCompletionPair.resolve();
|
||||||
|
this.nextCompletionPair.resolve = null;
|
||||||
|
this.nextCompletionPair.promise = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
APICopy() {
|
APICopy() {
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user