From a0496ca9f260b6df4a687d0de0b590bc162f12bb Mon Sep 17 00:00:00 2001 From: Husky <39809509+Huskydog9988@users.noreply.github.com> Date: Mon, 21 Aug 2023 22:30:03 -0400 Subject: [PATCH] fix supported versions As discussed in discord --- server/src/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/constants.ts b/server/src/constants.ts index 670cf929..d7433a9a 100644 --- a/server/src/constants.ts +++ b/server/src/constants.ts @@ -1,4 +1,4 @@ export const SUPPORTED_VERSIONS = new Set([ - '2.0.1-1.18.2-fabric', - '2.0.1-1.18.2-forge', + '2.0.1-1.18.2+fabric', + '2.0.1-1.18.2+forge', ])