Skip to content

Commit

Permalink
(1.2.3) New console launch message
Browse files Browse the repository at this point in the history
Simplified console launch message
- Reduced line footprint
- Removed references to 3-inch-largest
- Redesigned ready indicator to match other logs
- Removed newline from ready indicator
  • Loading branch information
cyckl committed Apr 12, 2020
1 parent dedaa29 commit 04db04c
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,16 @@
// Call in dependencies / set up global variables
const { Client, MessageEmbed } = require('discord.js');
const client = new Client();
const version = '1.2.2';
const version = '1.2.3';
var token = process.argv[2];

// Bootup sequence
client.on('ready', () => {
console.log('╔════════════════════════════════════╗');
console.log('║ ║');
console.log('║ Tweeter by cyckl ║');
console.log('║ Running version ' + version + ' ║');
console.log('║ RIP 3-inch-largest ║');
console.log('║ ║');
console.log('╚════════════════════════════════════╝');
console.log('Online!\n');
console.log('╔═══════════════════════╗');
console.log('║ Tweeter by cyckl ║');
console.log('║ Running version ' + version + ' ║');
console.log('╚═══════════════════════╝');
console.log('[Status] Ready.');
client.user.setActivity('.t msg');
});

Expand Down

0 comments on commit 04db04c

Please sign in to comment.