We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e2c3f1 commit f8b7fc6Copy full SHA for f8b7fc6
README.md
@@ -6,5 +6,4 @@ This website allows you to create simple RPG Maker MV/MZ plugins through its int
6
7
1. 在半途插入程式片段、
8
2. 覆寫既有函數
9
-3. 直接以 js 檔案下載插件
10
-4. 預設範例插件
+3. 預設範例插件
src/index.js
@@ -1024,15 +1024,15 @@ class Builder {
1024
1025
${commandsCode}
1026
})()`
1027
- : false
+ : ""
1028
1029
return "/**:"
1030
+ [
1031
BasicInfoBuilder.build(),
1032
ParameterBuilder.build(),
1033
commandsNote,
1034
]
1035
- .filter(([_, v]) => v !== false)
+ .filter(Fnc.getNotEmpty)
1036
.join("")
1037
+ "\n */"
1038
+ code
0 commit comments