1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-07 10:03:59 +00:00

Fix wrong check for full version

This commit is contained in:
tobspr 2020-06-13 11:06:15 +02:00
parent c963c961a0
commit 444908d22f

View File

@ -11,6 +11,6 @@ if (options.embed) {
}
// Allow testing full version outside of standalone
if (options.fullVersion && !G_IS_PROD) {
if (options.fullVersion && !G_IS_RELEASE) {
queryParamOptions.fullVersion = true;
}