Sleeves karma gain scales with sync.

This commit is contained in:
Olivier Gagnon 2021-03-12 13:44:06 -05:00
parent 8b812b92cc
commit 3a31ebdce3

@ -206,7 +206,7 @@ export class Sleeve extends Person {
retValue = this.gainExperience(p, successGainRates);
this.gainMoney(p, this.gainRatesForTask);
p.karma -= crime.karma;
p.karma -= crime.karma*(this.sync / 100);
} else {
retValue = this.gainExperience(p, this.gainRatesForTask);
}