mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 23:08:36 +02:00
log key for gang.ascendMember is 'gang.ascendMember' not 'gang.ascend'
fixes #2124
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user