changes all references to "heath reduction to damage reduction"

This commit is contained in:
phyzical
2022-04-13 18:54:13 +08:00
parent 7f288665d3
commit 90d1c22aca
10 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -138,7 +138,7 @@ export class PlayerObject implements IPlayer {
infiltration_trade_mult: number;
infiltration_sell_mult: number;
infiltration_timer_mult: number;
infiltration_health_reduction_mult: number;
infiltration_damage_reduction_mult: number;
createProgramReqLvl: number;
factionWorkType: string;
@@ -476,7 +476,7 @@ export class PlayerObject implements IPlayer {
this.infiltration_trade_mult = 1;
this.infiltration_sell_mult = 1;
this.infiltration_timer_mult = 1;
this.infiltration_health_reduction_mult = 1;
this.infiltration_damage_reduction_mult = 1;
// Sleeves & Re-sleeving
this.sleeves = [];
@@ -320,7 +320,7 @@ export function resetMultipliers(this: IPlayer): void {
this.infiltration_trade_mult = 1;
this.infiltration_sell_mult = 1;
this.infiltration_timer_mult = 1;
this.infiltration_health_reduction_mult = 1;
this.infiltration_damage_reduction_mult = 1;
}
export function hasProgram(this: IPlayer, programName: string): boolean {