mirror of
https://github.com/cliffe/BreakEscape.git
synced 2026-02-22 03:38:03 +00:00
fix: Correct Ink syntax errors in Chen conversation files
Fixed two compilation errors: 1. dr_chen_ongoing_conversations.ink line 478: Fixed conditional structure in phase_2_hub to use proper opening brace and hyphenated first condition 2. chen_hub.ink line 522: Removed invalid '=== END' knot definition (END is a built-in directive, not a knot to define) These syntax errors were preventing ink compilation.
This commit is contained in:
@@ -518,5 +518,3 @@ Dr. Chen: What interests you? Network security? Hardware hacking? Cryptography?
|
||||
Dr. Chen: I'll mix practical skills with theoretical knowledge. Make you a more effective operator.
|
||||
~ professional_reputation += 3
|
||||
-> chen_main_hub
|
||||
|
||||
=== END
|
||||
|
||||
@@ -475,12 +475,13 @@ Dr. Chen: I might have a focus problem. But all of it's important! How do you pr
|
||||
|
||||
=== phase_2_hub ===
|
||||
|
||||
{npc_chen_rapport >= 70:
|
||||
Dr. Chen: {player_name}! Perfect timing. I just had a breakthrough on that encryption problem we discussed. Want to hear about it?
|
||||
- npc_chen_rapport >= 60:
|
||||
Dr. Chen: Hey! Got some time? I could use a field agent's perspective on something.
|
||||
- else:
|
||||
Dr. Chen: Agent {player_name}. What can I help with today?
|
||||
{
|
||||
- npc_chen_rapport >= 70:
|
||||
Dr. Chen: {player_name}! Perfect timing. I just had a breakthrough on that encryption problem we discussed. Want to hear about it?
|
||||
- npc_chen_rapport >= 60:
|
||||
Dr. Chen: Hey! Got some time? I could use a field agent's perspective on something.
|
||||
- else:
|
||||
Dr. Chen: Agent {player_name}. What can I help with today?
|
||||
}
|
||||
|
||||
+ {not npc_chen_discussed_experimental_tech} [Ask about experimental technology]
|
||||
|
||||
Reference in New Issue
Block a user