Description:
Little fixes.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r45:7a42e052acb8 -

1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
@@ -10,4 +10,3
10 /Users/alys/repos/isometric-park-fna/FNA/bin/Release/FNA.dll
10 /Users/alys/repos/isometric-park-fna/FNA/bin/Release/FNA.dll
11 /Users/alys/repos/isometric-park-fna/FNA/obj/Release/FNA.csproj.CoreCompileInputs.cache
11 /Users/alys/repos/isometric-park-fna/FNA/obj/Release/FNA.csproj.CoreCompileInputs.cache
12 /Users/alys/repos/isometric-park-fna/FNA/obj/Release/FNA.dll
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
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
@@ -41,7 +41,7
41 public static Node<DialogOption> testTree = new Node<DialogOption>(
41 public static Node<DialogOption> testTree = new Node<DialogOption>(
42 new DialogOption
42 new DialogOption
43 {
43 {
44 response = "#[name:player]addressGreeting# #addressGreeting#",
44 response = "#[name:player]addressGreeting#",
45 speaker = "#assistantName#"
45 speaker = "#assistantName#"
46 },
46 },
47
47
@@ -77,7 +77,7
77 {
77 {
78 choice = node.data.choice != null ? grammar.Flatten(node.data.choice) : node.data.choice,
78 choice = node.data.choice != null ? grammar.Flatten(node.data.choice) : node.data.choice,
79 response = node.data.response != null ? grammar.Flatten(node.data.response) : node.data.response,
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