File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -72,12 +72,12 @@ fn create_template(
72
72
// Default mod.json
73
73
let mod_json = json ! ( {
74
74
"geode" : get_version( ) . to_string( ) ,
75
+ "gd" : gd,
75
76
"version" : version,
76
77
"id" : id,
77
78
"name" : name,
78
79
"developer" : developer,
79
80
"description" : description,
80
- "gd" : gd
81
81
} ) ;
82
82
83
83
// Format neatly
@@ -135,6 +135,9 @@ pub fn build_template(config: &mut Config, location: Option<PathBuf>) {
135
135
let location = location. absolutize ( ) . unwrap ( ) ;
136
136
137
137
let final_version = ask_value ( "Version" , Some ( "v1.0.0" ) , true ) ;
138
+
139
+ info ! ( "This is what Geometry Dash version your mod targets." ) ;
140
+ info ! ( "See https://docs.geode-sdk.org/mods/configuring for more details." ) ;
138
141
let mut gd;
139
142
loop {
140
143
gd = ask_value ( "Geometry Dash Version" , Some ( "2.204" ) , true ) ;
@@ -143,7 +146,6 @@ pub fn build_template(config: &mut Config, location: Option<PathBuf>) {
143
146
}
144
147
145
148
info ! ( "Geometry Dash version isn't valid, please choose a valid version (2.xxx or *)" ) ;
146
- info ! ( "Check https://docs.geode-sdk.org/mods/configuring for more details." )
147
149
}
148
150
149
151
let final_developer = ask_value ( "Developer" , config. default_developer . as_deref ( ) , true ) ;
You can’t perform that action at this time.
0 commit comments