Devlog Doggy Dog

Thanks for you valueble feedback. It seems like folks are enjoying the game.

I added custom greetings to all my guests:

```rust pub fn fetchgreetings() -> Vec { includestr!("greetings.txt") .lines() .map(|lines| lines.trim().to_string()) .collect() }

.......

for puzzle in selectedpuzzles { // Setup ....... let rndgreeting = greetings.choose(&mut rand::thread_rng()).unwrap(); loop { // Render the puzzle and question ...... ```

image-2.png

I also just made the game way harder using this:

rust let psychic_damage = rand::thread_rng().gen_range(1..5); paint.answer_result = format!("{guess} was INCORRECT! Guest did {psychic_damage} psychic damage to your ego!"); game.health -= psychic_damage;

I dare you to guess what the above piece of code achieved.

Finally I made it so Audio is a disabled by default feature, to promote developer experience using cfg!()