Show a hint the player starts on

This commit is contained in:
Eevee (Evelyn Woods) 2020-10-23 17:44:26 -06:00
parent 2820c067c5
commit 603a74a751

View File

@ -322,6 +322,9 @@ export class Level {
if (tile.type.on_ready) {
tile.type.on_ready(tile, this);
}
if (cell === this.player.cell && tile.type.is_hint) {
this.hint_shown = tile.specific_hint ?? this.stored_level.hint;
}
}
}
}