From 6f7540a69bf42a31957afd2c1d8928ba8d6da644 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Wed, 4 May 2022 10:07:58 -0500 Subject: [PATCH] Woops forgot to load allowed skins to server data --- scripts/server/startup.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/server/startup.js b/scripts/server/startup.js index 74bdbcec..6fd84f16 100644 --- a/scripts/server/startup.js +++ b/scripts/server/startup.js @@ -121,6 +121,7 @@ function loadServerDataFromDatabase() { // Always load these regardless of "test server" status getServerData().itemTypes = loadItemTypesFromDatabase(); getServerData().localeStrings = loadAllLocaleStrings(); + getServerData().allowedSkins = getAllowedSkins(getGame()); // Translation Cache getServerData().cachedTranslations = new Array(getGlobalConfig().locale.locales.length);