diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2022-12-30 18:06:17 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-01-07 15:04:22 -0700 |
commit | 03b75bf2a98edd4114be4799f974bb10fe9b82c4 (patch) | |
tree | a39020bf8475795875cba7e90c422b50c8b3a675 /launcher/minecraft/mod/tasks/LocalDataPackParseTask.cpp | |
parent | f3f628410d3d4c9589b8ec2d06d492e7861c35a3 (diff) | |
download | PrismLauncher-03b75bf2a98edd4114be4799f974bb10fe9b82c4.tar.gz PrismLauncher-03b75bf2a98edd4114be4799f974bb10fe9b82c4.tar.bz2 PrismLauncher-03b75bf2a98edd4114be4799f974bb10fe9b82c4.zip |
feat: Import all the things!
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/minecraft/mod/tasks/LocalDataPackParseTask.cpp')
-rw-r--r-- | launcher/minecraft/mod/tasks/LocalDataPackParseTask.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/minecraft/mod/tasks/LocalDataPackParseTask.cpp b/launcher/minecraft/mod/tasks/LocalDataPackParseTask.cpp index 3fcb2110..5bb44877 100644 --- a/launcher/minecraft/mod/tasks/LocalDataPackParseTask.cpp +++ b/launcher/minecraft/mod/tasks/LocalDataPackParseTask.cpp @@ -50,7 +50,7 @@ bool processFolder(DataPack& pack, ProcessingLevel level) Q_ASSERT(pack.type() == ResourceType::FOLDER); auto mcmeta_invalid = [&pack]() { - qWarning() << "Resource pack at" << pack.fileinfo().filePath() << "does not have a valid pack.mcmeta"; + qWarning() << "Data pack at" << pack.fileinfo().filePath() << "does not have a valid pack.mcmeta"; return false; // the mcmeta is not optional }; @@ -95,7 +95,7 @@ bool processZIP(DataPack& pack, ProcessingLevel level) QuaZipFile file(&zip); auto mcmeta_invalid = [&pack]() { - qWarning() << "Resource pack at" << pack.fileinfo().filePath() << "does not have a valid pack.mcmeta"; + qWarning() << "Data pack at" << pack.fileinfo().filePath() << "does not have a valid pack.mcmeta"; return false; // the mcmeta is not optional }; |