mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-13 11:13:50 +01:00
Cant stop wont stop studying
Correct merge, and known bug that prevents stopping studying
This commit is contained in:
parent
e381e857a5
commit
5f46775950
@ -67,7 +67,7 @@ import { achievements } from "../../Achievements/Achievements";
|
|||||||
import { FactionNames } from "../../Faction/data/FactionNames";
|
import { FactionNames } from "../../Faction/data/FactionNames";
|
||||||
import { ITaskTracker } from "../ITaskTracker";
|
import { ITaskTracker } from "../ITaskTracker";
|
||||||
import { IPerson } from "../IPerson";
|
import { IPerson } from "../IPerson";
|
||||||
import { use } from "../../ui/Context";
|
import { Player } from "../../Player";
|
||||||
import { graftingIntBonus } from "../Grafting/GraftingHelpers";
|
import { graftingIntBonus } from "../Grafting/GraftingHelpers";
|
||||||
|
|
||||||
export function init(this: IPlayer): void {
|
export function init(this: IPlayer): void {
|
||||||
@ -470,8 +470,7 @@ export function gainIntelligenceExp(this: IPerson, exp: number): void {
|
|||||||
console.error("ERROR: NaN passed into Player.gainIntelligenceExp()");
|
console.error("ERROR: NaN passed into Player.gainIntelligenceExp()");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const player = use.Player();
|
if (Player.sourceFileLvl(5) > 0 || this.intelligence > 0) {
|
||||||
if (player.sourceFileLvl(5) > 0 || this.intelligence > 0) {
|
|
||||||
this.intelligence_exp += exp;
|
this.intelligence_exp += exp;
|
||||||
this.intelligence = Math.floor(this.calculateSkill(this.intelligence_exp, 1));
|
this.intelligence = Math.floor(this.calculateSkill(this.intelligence_exp, 1));
|
||||||
}
|
}
|
||||||
|
@ -590,7 +590,7 @@ export class Sleeve extends Person {
|
|||||||
// for, we need to reset the sleeve's task
|
// for, we need to reset the sleeve's task
|
||||||
if (p.gang) {
|
if (p.gang) {
|
||||||
if (fac.name === p.gang.facName) {
|
if (fac.name === p.gang.facName) {
|
||||||
this.resetTaskStatus();
|
this.resetTaskStatus(p);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user