mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-23 08:03:48 +01:00
Expose sales cost on NSMaterial interface
This commit is contained in:
parent
9c805dabb8
commit
b2abec7424
@ -359,6 +359,7 @@ export function NetscriptCorporation(
|
|||||||
const corporation = getCorporation();
|
const corporation = getCorporation();
|
||||||
return {
|
return {
|
||||||
cost: material.bCost,
|
cost: material.bCost,
|
||||||
|
sCost: material.sCost,
|
||||||
name: material.name,
|
name: material.name,
|
||||||
qty: material.qty,
|
qty: material.qty,
|
||||||
qlt: material.qlt,
|
qlt: material.qlt,
|
||||||
|
2
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
2
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@ -7111,6 +7111,8 @@ interface Material {
|
|||||||
sell: number;
|
sell: number;
|
||||||
/** cost to buy material */
|
/** cost to buy material */
|
||||||
cost: number;
|
cost: number;
|
||||||
|
/** Sell cost, can be "MP+5" */
|
||||||
|
sCost: string | number;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user