diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2022-12-26 14:29:13 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2022-12-26 14:50:15 -0700 |
commit | 3691f3a2963c77dbd7b469b4b90ca79b61014d43 (patch) | |
tree | 0808dcaec8ff3177367d048103874a17fed63acc /launcher/minecraft/mod/DataPack.h | |
parent | b2082bfde7149a5596fe8a467659699ad569f932 (diff) | |
download | PrismLauncher-3691f3a2963c77dbd7b469b4b90ca79b61014d43.tar.gz PrismLauncher-3691f3a2963c77dbd7b469b4b90ca79b61014d43.tar.bz2 PrismLauncher-3691f3a2963c77dbd7b469b4b90ca79b61014d43.zip |
fix: cleanup and suggested changes
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/minecraft/mod/DataPack.h')
-rw-r--r-- | launcher/minecraft/mod/DataPack.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/launcher/minecraft/mod/DataPack.h b/launcher/minecraft/mod/DataPack.h index 17d9b65e..fc2703c7 100644 --- a/launcher/minecraft/mod/DataPack.h +++ b/launcher/minecraft/mod/DataPack.h @@ -45,7 +45,7 @@ class DataPack : public Resource { /** Gets, respectively, the lower and upper versions supported by the set pack format. */ [[nodiscard]] std::pair<Version, Version> compatibleVersions() const; - /** Gets the description of the resource pack. */ + /** Gets the description of the data pack. */ [[nodiscard]] QString description() const { return m_description; } /** Thread-safe. */ @@ -62,12 +62,12 @@ class DataPack : public Resource { protected: mutable QMutex m_data_lock; - /* The 'version' of a resource pack, as defined in the pack.mcmeta file. - * See https://minecraft.fandom.com/wiki/Tutorials/Creating_a_resource_pack#Formatting_pack.mcmeta + /* The 'version' of a data pack, as defined in the pack.mcmeta file. + * See https://minecraft.fandom.com/wiki/Data_pack#pack.mcmeta */ int m_pack_format = 0; - /** The resource pack's description, as defined in the pack.mcmeta file. + /** The data pack's description, as defined in the pack.mcmeta file. */ QString m_description; }; |