diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-07-13 21:12:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-13 21:12:12 -0700 |
commit | cde85947c7dd4c2508938490789fef60cd464828 (patch) | |
tree | 59e39f3f82b5a3134abfff830bc4df754dd9637c | |
parent | e70407289266a205147bfb1293763e64dacb0f3e (diff) | |
download | PrismLauncher-cde85947c7dd4c2508938490789fef60cd464828.tar.gz PrismLauncher-cde85947c7dd4c2508938490789fef60cd464828.tar.bz2 PrismLauncher-cde85947c7dd4c2508938490789fef60cd464828.zip |
Update launcher/minecraft/mod/tasks/LocalResourceParse.cpp
Co-authored-by: seth <getchoo@tuta.io>
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
-rw-r--r-- | launcher/minecraft/mod/tasks/LocalResourceParse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/mod/tasks/LocalResourceParse.cpp b/launcher/minecraft/mod/tasks/LocalResourceParse.cpp index 6d9b4d97..0894049c 100644 --- a/launcher/minecraft/mod/tasks/LocalResourceParse.cpp +++ b/launcher/minecraft/mod/tasks/LocalResourceParse.cpp @@ -45,7 +45,7 @@ namespace ResourceUtils { PackedResourceType identify(QFileInfo file){ if (file.exists() && file.isFile()) { if (ModUtils::validate(file)) { - // mods can contain resource and data packs so they much be tested first + // mods can contain resource and data packs so they must be tested first qDebug() << file.fileName() << "is a mod"; return PackedResourceType::Mod; } else if (ResourcePackUtils::validate(file)) { |