chg: removed self-healing warning
This commit is contained in:
parent
c046e2cc4e
commit
1254024054
|
|
@ -93,7 +93,8 @@ func _rebuild():
|
||||||
substring_sizes.append(TranslationServer.translate(story_array[i]).strip_edges().length() + 1)
|
substring_sizes.append(TranslationServer.translate(story_array[i]).strip_edges().length() + 1)
|
||||||
if not paragraph_lengths[-1] == story_array.size()-1:
|
if not paragraph_lengths[-1] == story_array.size()-1:
|
||||||
paragraph_lengths.append(story_array.size()-1)
|
paragraph_lengths.append(story_array.size()-1)
|
||||||
push_warning("Paragraph lenghts of scene %s are misconfigured!" % name)
|
# I removed this warning because this is just a self-healing postcondition?
|
||||||
|
#push_warning("Paragraph lenghts of scene %s are misconfigured!" % name)
|
||||||
if paragraph_lengths[p] == i:
|
if paragraph_lengths[p] == i:
|
||||||
p += 1
|
p += 1
|
||||||
label.text += "[/p][p][font_size=8] [/font_size][/p][p]"
|
label.text += "[/p][p][font_size=8] [/font_size][/p][p]"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue