Skip to content

Commit

Permalink
feat: make fissure timestamp the end time for the fissure
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno committed Jul 2, 2018
1 parent 4796715 commit 4ab5f34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/embeds/FissureEmbed.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ class FissureEmbed extends BaseEmbed {
const f = fissures[0];
this.title = `[${platform.toUpperCase()}] ${f.missionType} ${f.tier}`;
this.description = `${f.node} against ${f.enemy}`;
this.footer.text = `${f.eta} remaining`;
this.footer.text = `${f.eta} remaining • Ends at `;
this.timestamp = new Date(f.expiry);
this.thumbnail.url = 'https://i.imgur.com/EfIRu6v.png';
}

Expand Down

0 comments on commit 4ab5f34

Please sign in to comment.