diff --git a/src/state.rs b/src/state.rs index ced8f2c..a24ad55 100644 --- a/src/state.rs +++ b/src/state.rs @@ -137,9 +137,12 @@ impl State { // Set up the game log gamelog::clear_log(); - gamelog::line("Welcome to") - .append_color(colors::CYAN, "Rusty Roguelike") - .log(); + + if new_depth == 1 { + gamelog::line("Welcome to") + .append_color(colors::CYAN, "Rusty Roguelike") + .log(); + } gamelog::clear_events(); }