make console startup text less useless

This commit is contained in:
Schrottkatze 2025-06-18 17:21:24 +02:00
parent 3b0bd65078
commit 3a3c238cd8
Signed by: schrottkatze
SSH key fingerprint: SHA256:FPOYVeBy3QP20FEM42uWF1Wa/Qhlk+L3S2+Wuau/Auo

View file

@ -47,8 +47,10 @@ pub struct ConsoleLog(Vec<ConsoleEvent>, usize);
impl ConsoleLog { impl ConsoleLog {
fn new() -> Self { fn new() -> Self {
Self( Self(
vec![ConsoleEvent::Output(String::from( vec![ConsoleEvent::Output(format!(
"Welcome to the dev console :3\n (i should probably put some proper info into this some time)", "Running {} ({})\nMeow!! :3",
env!("CARGO_PKG_NAME"),
env!("CARGO_PKG_VERSION")
))], ))],
1, 1,
) )