summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorMichael Alexsander <michaelalexsander@protonmail.com>2019-11-17 08:54:43 -0300
committerMichael Alexsander <michaelalexsander@protonmail.com>2019-11-17 08:54:43 -0300
commit7ecaff578b856dd3ac22f91af551c3da0ddb01b6 (patch)
tree02c0239700627675b122e1751070491c24006496 /editor
parent3c831377712ec7b37d8f22739538e6abb3c7741f (diff)
Make the script templates' blank lines conform with the official style guide
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_settings.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp
index a3a02dbd4c..87e8a53e94 100644
--- a/editor/editor_settings.cpp
+++ b/editor/editor_settings.cpp
@@ -727,6 +727,7 @@ static Dictionary _get_builtin_script_templates() {
templates["no_comments.gd"] =
"extends %BASE%\n"
"\n"
+ "\n"
"func _ready()%VOID_RETURN%:\n"
"%TS%pass\n";