Skip to content

Commit 3bae814

Browse files
committed
Fixed no line breaks for response function comments
1 parent e278496 commit 3bae814

File tree

1 file changed

+2
-2
lines changed
  • ConversationEditor/src/com/projectswg/tools/csc/conversationeditor

1 file changed

+2
-2
lines changed

ConversationEditor/src/com/projectswg/tools/csc/conversationeditor/Compiler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ private void createResponseHandler(BufferedWriter bw, ArrayList<ConversationNode
114114

115115
int currentHandler = handleNum + 1;
116116
for (Map.Entry<ConversationNode, ArrayList<ConversationNode>> handleNode : handleFuncs.entrySet()) {
117-
bw.write("# Handle Response for " + handleNode.getKey().getStf());
117+
bw.write("# Handle Response for " + handleNode.getKey().getStf() + "\n");
118118
createResponseHandler(bw, handleNode.getValue(), currentHandler++, conversationLinks);
119119
}
120120
}
@@ -141,7 +141,7 @@ private void createOptionsAndHandler(BufferedWriter bw, ConversationNode respons
141141
bw.write(indent4 + "core.conversationService.sendConversationMessage(actor, npc, OutOfBand.ProsePackage('@conversation/" + response.getStf() + "'))\n");
142142
bw.write(indent4 + "return\n");
143143
bw.newLine();
144-
bw.write("# Handle Response for " + response.getStf());
144+
bw.write("# Handle Response for " + response.getStf() + "\n");
145145
createResponseHandler(bw, options, handleScreenNum, conversationLinks);
146146
}
147147

0 commit comments

Comments
 (0)