Skip to content

Commit

Permalink
fix: default arbi data (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno authored Jun 21, 2024
1 parent 5afc5ec commit b71ba6d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion lib/WorldState.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,17 @@ export default class WorldState {
} = externalMissions);

if (!this.arbitration || !Object.keys(this.arbitration).length) {
this.arbitration = undefined;
this.arbitration = {
node: 'SolNode000',
nodeKey: 'SolNode000',
activation: new Date(0),
expiry: new Date(8.64e15),
enemy: 'Tenno',
type: 'Unknown',
typeKey: 'Unknown',
archwing: false,
sharkwing: false,
};
}

/**
Expand Down

0 comments on commit b71ba6d

Please sign in to comment.