Only show welcome message on first level
This commit is contained in:
parent
4a8b791acb
commit
db5c219599
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user