alphabetize for no reason

This commit is contained in:
Quaternions 2023-10-02 18:35:51 -07:00
parent e2a5edf8df
commit e54400a436

View File

@ -15,11 +15,11 @@ enum Commands {
Download(MapList), Download(MapList),
DownloadTextures(PathBufList), DownloadTextures(PathBufList),
ConvertTextures, ConvertTextures,
Upload,
Scan,
Extract(PathBufList), Extract(PathBufList),
Replace,
Interactive, Interactive,
Replace,
Scan,
Upload,
} }
#[derive(Args)] #[derive(Args)]
@ -845,10 +845,10 @@ fn main() -> AResult<()> {
Commands::Download(map_list)=>download(map_list.maps), Commands::Download(map_list)=>download(map_list.maps),
Commands::DownloadTextures(pathlist)=>download_textures(pathlist.paths), Commands::DownloadTextures(pathlist)=>download_textures(pathlist.paths),
Commands::ConvertTextures=>convert_textures(), Commands::ConvertTextures=>convert_textures(),
Commands::Upload=>upload(),
Commands::Scan=>scan(),
Commands::Replace=>replace(),
Commands::Interactive=>interactive(),
Commands::Extract(pathlist)=>extract(pathlist.paths), Commands::Extract(pathlist)=>extract(pathlist.paths),
Commands::Interactive=>interactive(),
Commands::Replace=>replace(),
Commands::Scan=>scan(),
Commands::Upload=>upload(),
} }
} }