Browse Source

Fix default C# script

Przmk 7 years ago
parent
commit
2ae23c9f97
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/mono/csharp_script.cpp

+ 1 - 1
modules/mono/csharp_script.cpp

@@ -284,7 +284,7 @@ Ref<Script> CSharpLanguage::get_template(const String &p_class_name, const Strin
 							 "//        // Update game logic here.\n"
 							 "//        // Update game logic here.\n"
 							 "//        \n"
 							 "//        \n"
 							 "//    }\n"
 							 "//    }\n"
-							 "//}\n";
+							 "}\n";
 
 
 	script_template = script_template.replace("%BASE_CLASS_NAME%", p_base_class_name)
 	script_template = script_template.replace("%BASE_CLASS_NAME%", p_base_class_name)
 							  .replace("%CLASS_NAME%", p_class_name);
 							  .replace("%CLASS_NAME%", p_class_name);