aboutsummaryrefslogtreecommitdiff
path: root/launcher/minecraft/mod/DataPack.cpp
diff options
context:
space:
mode:
authorRachel Powers <508861+Ryex@users.noreply.github.com>2022-12-26 14:29:13 -0700
committerRachel Powers <508861+Ryex@users.noreply.github.com>2022-12-26 14:50:15 -0700
commit3691f3a2963c77dbd7b469b4b90ca79b61014d43 (patch)
tree0808dcaec8ff3177367d048103874a17fed63acc /launcher/minecraft/mod/DataPack.cpp
parentb2082bfde7149a5596fe8a467659699ad569f932 (diff)
downloadPrismLauncher-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.cpp')
-rw-r--r--launcher/minecraft/mod/DataPack.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/minecraft/mod/DataPack.cpp b/launcher/minecraft/mod/DataPack.cpp
index ea1d097b..5c58f6b2 100644
--- a/launcher/minecraft/mod/DataPack.cpp
+++ b/launcher/minecraft/mod/DataPack.cpp
@@ -30,9 +30,9 @@
// Values taken from:
// https://minecraft.fandom.com/wiki/Tutorials/Creating_a_data_pack#%22pack_format%22
static const QMap<int, std::pair<Version, Version>> s_pack_format_versions = {
- { 4, { Version("1.13"), Version("1.14.4") } }, { 5, { Version("1.15"), Version("1.16.1") } },
- { 6, { Version("1.16.2"), Version("1.16.5") } }, { 7, { Version("1.17"), Version("1.17.1") } },
- { 8, { Version("1.18"), Version("1.18.1") } }, { 9, { Version("1.18.2"), Version("1.18.2") } },
+ { 4, { Version("1.13"), Version("1.14.4") } }, { 5, { Version("1.15"), Version("1.16.1") } },
+ { 6, { Version("1.16.2"), Version("1.16.5") } }, { 7, { Version("1.17"), Version("1.17.1") } },
+ { 8, { Version("1.18"), Version("1.18.1") } }, { 9, { Version("1.18.2"), Version("1.18.2") } },
{ 10, { Version("1.19"), Version("1.19.3") } },
};