mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 23:53:48 +01:00
log key for gang.ascendMember is 'gang.ascendMember' not 'gang.ascend'
fixes #2124
This commit is contained in:
parent
8bf18c1981
commit
a193f651bc
@ -354,7 +354,7 @@ export class Gang implements IGang {
|
|||||||
const res = member.ascend();
|
const res = member.ascend();
|
||||||
this.respect = Math.max(1, this.respect - res.respect);
|
this.respect = Math.max(1, this.respect - res.respect);
|
||||||
if (workerScript) {
|
if (workerScript) {
|
||||||
workerScript.log("gang.ascend", () => `Ascended Gang member ${member.name}`);
|
workerScript.log("gang.ascendMember", () => `Ascended Gang member ${member.name}`);
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
} catch (e: any) {
|
} catch (e: any) {
|
||||||
|
Loading…
Reference in New Issue
Block a user