From e86d2fd4f53a4ede19103e6d7a2cb820082af6e4 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sat, 7 Sep 2019 10:08:49 -0400 Subject: [PATCH] [O] Create a better ascii art --- src/constants.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/constants.ts b/src/constants.ts index b21ec85..6a32eb2 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -9,7 +9,10 @@ export default class Constants */ public static API_URL: string = 'https://va.hydev.org/api'; - public static SPLASH: string = '\\ / /\\ ._ _.| _ _ ._\n' + - ' \\/>< /--\\| |(_||\\//_(/_| \n' + - ' v0.1.1.0 / ' + public static SPLASH: string = + '. , ,---. | \n' + + '| |. , |---|,---.,---.| , .,---,,---.,---.\n' + + ' \\ / >< | || |,---|| | | .-\' |---\'| \n' + + ' `\' \' ` ` \'` \'`---^`---\'`---|\'---\'`---\'` \n' + + ' v1.1.0 `---\' ' }