aboutsummaryrefslogtreecommitdiff
path: root/launcher/minecraft/mod/tasks/LocalDataPackParseTask.cpp
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-01-16 10:04:09 +0100
committerGitHub <noreply@github.com>2023-01-16 10:04:09 +0100
commit1a35fec1341323950eb5cb4ee1d2791b2241db67 (patch)
treed435ef97651840f92f7b382121064a79ab816450 /launcher/minecraft/mod/tasks/LocalDataPackParseTask.cpp
parentf1247d2224e2ca81076d52fe53f0ddb0382713fd (diff)
parentf7b0ba88da5895a48e9d5f1adda223a8fb0f4c32 (diff)
downloadPrismLauncher-1a35fec1341323950eb5cb4ee1d2791b2241db67.tar.gz
PrismLauncher-1a35fec1341323950eb5cb4ee1d2791b2241db67.tar.bz2
PrismLauncher-1a35fec1341323950eb5cb4ee1d2791b2241db67.zip
Merge pull request #696 from Ryex/import-all-the-things
Fixes https://github.com/PrismLauncher/PrismLauncher/issues/581 Fixes https://github.com/PrismLauncher/PrismLauncher/issues/700
Diffstat (limited to 'launcher/minecraft/mod/tasks/LocalDataPackParseTask.cpp')
-rw-r--r--launcher/minecraft/mod/tasks/LocalDataPackParseTask.cpp4
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
};