aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Cao <70191398+ryanccn@users.noreply.github.com>2022-11-19 23:47:47 +0800
committerRyan Cao <70191398+ryanccn@users.noreply.github.com>2022-11-19 23:47:47 +0800
commita33b8049238329fa97545c0b2db5bb8c2f7545c6 (patch)
tree38ac7a4d94a41a0c55a6e86075617537e52b9288
parentf527958cb35b976d88e7037bda62762c1ffe6e13 (diff)
downloadPrismLauncher-a33b8049238329fa97545c0b2db5bb8c2f7545c6.tar.gz
PrismLauncher-a33b8049238329fa97545c0b2db5bb8c2f7545c6.tar.bz2
PrismLauncher-a33b8049238329fa97545c0b2db5bb8c2f7545c6.zip
fix: add resource pack format for 1.19.3
Co-authored-by: Rachel Powers <508861+Ryex@users.noreply.github.com> Signed-off-by: Ryan Cao <70191398+ryanccn@users.noreply.github.com>
-rw-r--r--launcher/minecraft/mod/ResourcePack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/mod/ResourcePack.cpp b/launcher/minecraft/mod/ResourcePack.cpp
index 1e9db596..ef0370d0 100644
--- a/launcher/minecraft/mod/ResourcePack.cpp
+++ b/launcher/minecraft/mod/ResourcePack.cpp
@@ -15,7 +15,7 @@ static const QMap<int, std::pair<Version, Version>> s_pack_format_versions = {
{ 3, { Version("1.11"), Version("1.12.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.2") } },
- { 9, { Version("1.19"), Version("1.19.2") } },
+ { 9, { Version("1.19"), Version("1.19.2") } }, { 11, { Version("1.19.3"), Version("1.19.3") } },
};
void ResourcePack::setPackFormat(int new_format_id)