mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-18 12:15:44 +01:00
allbuild commit fc0fef59
This commit is contained in:
parent
fc0fef598b
commit
1d46adbce1
4
dist/main.bundle.js
vendored
4
dist/main.bundle.js
vendored
File diff suppressed because one or more lines are too long
2
dist/main.bundle.js.map
vendored
2
dist/main.bundle.js.map
vendored
File diff suppressed because one or more lines are too long
@ -858,16 +858,16 @@ export class Sleeve extends Person {
|
|||||||
case "none": // Note : due to the way Sleeve.workOutAtGym() is currently designed, this should never happend.
|
case "none": // Note : due to the way Sleeve.workOutAtGym() is currently designed, this should never happend.
|
||||||
break;
|
break;
|
||||||
case "str":
|
case "str":
|
||||||
this.gainRatesForTask.str = baseGymExp * totalExpMultiplier * this.strength_exp_mult;
|
this.gainRatesForTask.str = baseGymExp * totalExpMultiplier * this.mults.strength_exp;
|
||||||
break;
|
break;
|
||||||
case "def":
|
case "def":
|
||||||
this.gainRatesForTask.def = baseGymExp * totalExpMultiplier * this.defense_exp_mult;
|
this.gainRatesForTask.def = baseGymExp * totalExpMultiplier * this.mults.defense_exp;
|
||||||
break;
|
break;
|
||||||
case "dex":
|
case "dex":
|
||||||
this.gainRatesForTask.dex = baseGymExp * totalExpMultiplier * this.dexterity_exp_mult;
|
this.gainRatesForTask.dex = baseGymExp * totalExpMultiplier * this.mults.dexterity_exp;
|
||||||
break;
|
break;
|
||||||
case "agi":
|
case "agi":
|
||||||
this.gainRatesForTask.agi = baseGymExp * totalExpMultiplier * this.agility_exp_mult;
|
this.gainRatesForTask.agi = baseGymExp * totalExpMultiplier * this.mults.agility_exp;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user