Compare commits

...

2 commits

2 changed files with 24 additions and 0 deletions

View file

@ -458,6 +458,9 @@ pub fn apply_input_to_player(
key_input: Res<ButtonInput<KeyCode>>,
q_windows: Query<&Window, With<PrimaryWindow>>,
) {
if settings.map_active || !settings.in_control() {
return;
}
let player = q_player.get_single_mut();
if player.is_err() {
return;

View file

@ -883,12 +883,22 @@
- Oh, hello!
- Look, I'm very busy right now constructing this place.
- We can talk more once this is done.
- label: entrypoint
- Can you spare some oxygen?:
- Oh, sure thing!
- script: refilloxygen 1
- Can I ask you some general questions?:
- Of course.
- goto: generic_questions
- Bye!:
- See you around!
- goto: EXIT
- goto: entrypoint
- label: generic_questions
- include: generic_questions_serenity
- Anything else?
- goto: entrypoint
---
@ -896,11 +906,22 @@
- chat: River
- Welcome to our little oasis!
- This will be great once it's finished.
- label: entrypoint
- Can you spare some oxygen?:
- Oh, sure thing!
- script: refilloxygen 1
- Can I ask you some general questions?:
- Of course.
- goto: generic_questions
- Bye!:
- See you around!
- goto: EXIT
- goto: entrypoint
- label: generic_questions
- include: generic_questions_serenity
- Anything else?
- goto: entrypoint
---