Fix line being assigned to twice in the GDScript language server

This closes #32090.
This commit is contained in:
Hugo Locurcio 2019-09-23 15:27:30 +02:00
parent 159470df08
commit c1fcb22677
No known key found for this signature in database
GPG key ID: 39E8F8BE30B0A49C

View file

@ -345,15 +345,13 @@ String ExtendGDScriptParser::marked_documentation(const String &p_bbcode) {
if (block_start != -1) {
code_block_indent = block_start;
in_code_block = true;
line = "'''gdscript";
line = "\n";
line = "'''gdscript\n";
} else if (in_code_block) {
line = "\t" + line.substr(code_block_indent, line.length());
}
if (in_code_block && line.find("[/codeblock]") != -1) {
line = "'''\n";
line = "\n";
line = "'''\n\n";
in_code_block = false;
}