allbuild commit fc0fef59

This commit is contained in:
Olivier Gagnon 2022-07-21 19:37:05 -04:00
parent fc0fef598b
commit 1d46adbce1
3 changed files with 7 additions and 7 deletions

4
dist/main.bundle.js vendored

File diff suppressed because one or more lines are too long

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;