Description:
Little fixes.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
|
1 | NO CONTENT: modified file, binary diff hidden |
@@ -10,4 +10,3 | |||
|
10 | 10 | /Users/alys/repos/isometric-park-fna/FNA/bin/Release/FNA.dll |
|
11 | 11 | /Users/alys/repos/isometric-park-fna/FNA/obj/Release/FNA.csproj.CoreCompileInputs.cache |
|
12 | 12 | /Users/alys/repos/isometric-park-fna/FNA/obj/Release/FNA.dll |
|
13 | /Users/alys/repos/isometric-park-fna/FNA/obj/Release/FNA.csprojAssemblyReference.cache |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
@@ -41,7 +41,7 | |||
|
41 | 41 | public static Node<DialogOption> testTree = new Node<DialogOption>( |
|
42 | 42 | new DialogOption |
|
43 | 43 | { |
|
44 |
response = "#[name:player]addressGreeting# |
|
|
44 | response = "#[name:player]addressGreeting#", | |
|
45 | 45 | speaker = "#assistantName#" |
|
46 | 46 | }, |
|
47 | 47 | |
@@ -77,7 +77,7 | |||
|
77 | 77 | { |
|
78 | 78 | choice = node.data.choice != null ? grammar.Flatten(node.data.choice) : node.data.choice, |
|
79 | 79 | response = node.data.response != null ? grammar.Flatten(node.data.response) : node.data.response, |
|
80 | speaker = grammar.Flatten(node.data.speaker) | |
|
80 | speaker = node.data.speaker != null ? grammar.Flatten(node.data.speaker) : node.data.speaker | |
|
81 | 81 | }; |
|
82 | 82 | |
|
83 | 83 |
You need to be logged in to leave comments.
Login now