diff --git a/src/NetscriptFunctions.js b/src/NetscriptFunctions.js index df2417a78..9ebf85617 100644 --- a/src/NetscriptFunctions.js +++ b/src/NetscriptFunctions.js @@ -3041,6 +3041,7 @@ function NetscriptFunctions(workerScript) { charisma_exp_mult: Player.charisma_exp_mult, company_rep_mult: Player.company_rep_mult, faction_rep_mult: Player.faction_rep_mult, + numPeopleKilled: Player.numPeopleKilled, money: Player.money.toNumber(), city: Player.city, location: Player.location, diff --git a/src/PersonObjects/IPlayer.ts b/src/PersonObjects/IPlayer.ts index bed14af84..d8c01f64b 100644 --- a/src/PersonObjects/IPlayer.ts +++ b/src/PersonObjects/IPlayer.ts @@ -47,6 +47,7 @@ export interface IPlayer { init: () => void; isWorking: boolean; karma: number; + numPeopleKilled: number; location: LocationName; max_hp: number; money: any;