From a5db49ebb29ccf9e9d7da2652b062d849a0a03a3 Mon Sep 17 00:00:00 2001
From: Elohiem <20236-Elohiem@users.noreply.gitgud.io>
Date: Sun, 12 Dec 2021 00:08:12 +0100
Subject: [PATCH] Bump version and update link

---
 .gitlab-ci.yml             | 2 +-
 src/art/artJS.js           | 2 +-
 src/gui/options/options.js | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 38ccc5f2de1..d9f8c5d7564 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -18,7 +18,7 @@ variables:
   # precompiled / assets
   # the URLs are the same as inside the game, change both if updating
   WEBGL_NAME: "WebGL art assets"
-  WEBGL_URL: "https://mega.nz/folder/294GhJJQ#A57OtA3xDvQTO82FYz00ow"
+  WEBGL_URL: "https://mega.nz/folder/m1JQ3JAQ#2GJsM7csBBvBu0DX8SB2kA"
   RENDER_NAME: "Rendered imagepack (outdated)"
   RENDER_URL: "https://mega.nz/file/upoAlBaZ#EbZ5wCixxZxBhMN_ireJTXt0SIPOywO2JW9XzTIPhe0"
 
diff --git a/src/art/artJS.js b/src/art/artJS.js
index 2e2e3a4f08f..400da38247c 100644
--- a/src/art/artJS.js
+++ b/src/art/artJS.js
@@ -200,7 +200,7 @@ App.Art.webglInitialize = function() {
 	let load = document.createElement("script");
 	load.onload = function() {
 		// but only if version is correct
-		if (App.Art.version === "1.9") {
+		if (App.Art.version === "1.10") {
 			document.head.appendChild(script);
 		} else {
 			App.Art.errorHandler("engineFailed", 3);
diff --git a/src/gui/options/options.js b/src/gui/options/options.js
index d6cbcf73a1e..0bee6997cf4 100644
--- a/src/gui/options/options.js
+++ b/src/gui/options/options.js
@@ -1160,7 +1160,7 @@ App.UI.artOptions = function() {
 			options.addOption("Clothing erection bulges are", "showClothingErection")
 				.addValue("Enabled", true).on().addValue("Disabled", false).off();
 		} else if (V.imageChoice === 4) {
-			options.addComment(`This art is currently (10/26/21) the most actively developed. Real time 3D models. <a href='https://mega.nz/folder/294GhJJQ#A57OtA3xDvQTO82FYz00ow' target='_blank'> Download the WebGL art assets</a> and place the 'webgl' folder into the resources/ folder where this HTML file is.
+			options.addComment(`This art is currently (12/12/21) the most actively developed. Real time 3D models. <a href='https://mega.nz/folder/m1JQ3JAQ#2GJsM7csBBvBu0DX8SB2kA' target='_blank'> Download the WebGL art assets</a> and place the 'webgl' folder into the resources/ folder where this HTML file is.
 			Then <b>refresh</b> the page.
 			Create the resources folder if it does not exist. <span class="warning">(Android/MacOS not supported)</span>`);
 
-- 
GitLab