Skip to content

Commit

Permalink
starbase activity
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathaniel Moschkin committed Feb 12, 2024
1 parent 2aaafce commit eb5318b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/logic/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,9 @@ export class ApiClass {
for(let member of fleet.members) {
let memberInfo = complete_member_info.members.find((m: any) => m.pid === member.pid);
if (memberInfo) {
if (memberInfo.display_name === '[IPA] ironyWrit') {
console.log("Break here");
}
member.squad = '';
if (memberInfo.squad_id) {
member.squad_id = Number(memberInfo.squad_id);
Expand All @@ -325,6 +328,7 @@ export class ApiClass {
member.last_active = memberInfo.last_active;
member.daily_activity = memberInfo.daily_activity;
member.event_rank = memberInfo.event_rank;
member.starbase_activity = memberInfo.starbase_activity;
}
}

Expand Down

0 comments on commit eb5318b

Please sign in to comment.