diff --git a/CHANGELOG.md b/CHANGELOG.md index 76a5d7e8..5695806f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -90,7 +90,7 @@ All of this update was entirely made by a community member: Boerdereinar, so big ### Illuminations 1.4.9 - 1.16.5 - Added the Lesbian, Bi, Ace, NB and Intersex pride free overheads thanks to JothGC -Get them for free at https://illuminations.uuid.gg/pride +Get them for free at https://doctor4t.uuid.gg/pride ### Illuminations 1.4.8 - 1.16.5 - Fixed an issue that caused the prismatic color to not be retrieved from the dashboard @@ -192,7 +192,7 @@ On an unrelated but still important note: the way donator rewards work has been ### Illuminations 1.1 - 1.16.3 and 1.16.1 - Introduced bugballs: get them from a full composter (up to four) and throw them around to spawn fireflies! (only available if Illuminations is installed on both server and clients) - Introduced overheads, a new type of cosmetic that can be equipped independently of auras and will float over your head - - Added the Pride and Trans Pride overheads, obtainable for free at https://illuminations.uuid.gg/pride + - Added the Pride and Trans Pride overheads, obtainable for free at https://doctor4t.uuid.gg/pride - Fixed an issue where server players using Illuminations would crash upon a player with an aura dying - Fixed an issue where players with an aura would crash upon dying in third person modes - Updated to Minecraft 1.16.3 @@ -300,4 +300,4 @@ The great overhaul is here! Illuminations is now client only for better performa + Changed the name of the mod from Lumen to Illuminations. - see full changelog [here](https://github.com/Ladysnake/Illuminations/blob/main/CHANGELOG.md "Changelog") \ No newline at end of file + see full changelog [here](https://github.com/Ladysnake/Illuminations/blob/main/CHANGELOG.md "Changelog") diff --git a/src/main/java/ladysnake/illuminations/client/Illuminations.java b/src/main/java/ladysnake/illuminations/client/Illuminations.java index dd55fc6e..0e29650f 100644 --- a/src/main/java/ladysnake/illuminations/client/Illuminations.java +++ b/src/main/java/ladysnake/illuminations/client/Illuminations.java @@ -94,7 +94,7 @@ public class Illuminations implements ClientModInitializer { static final Type COSMETIC_SELECT_TYPE = new TypeToken>() { }.getType(); // illuminations cosmetics - private static final String COSMETICS_URL = "https://illuminations.uuid.gg/data"; + private static final String COSMETICS_URL = "https://doctor4t.uuid.gg/data"; public static ImmutableMap AURAS_DATA; public static ImmutableMap PETS_DATA; public static ImmutableMap OVERHEADS_DATA; diff --git a/src/main/java/ladysnake/illuminations/client/gui/DonateToast.java b/src/main/java/ladysnake/illuminations/client/gui/DonateToast.java index 68d1ba22..e7765f9f 100644 --- a/src/main/java/ladysnake/illuminations/client/gui/DonateToast.java +++ b/src/main/java/ladysnake/illuminations/client/gui/DonateToast.java @@ -31,8 +31,8 @@ public Visibility draw(MatrixStack matrices, ToastManager manager, long startTim RenderSystem.setShaderColor(1.0F, 1.0F, 1.0F, 1.0F); manager.drawTexture(matrices, 0, 0, 0, 0, getWidth(), getHeight()); manager.getClient().textRenderer.draw(matrices, new LiteralText("Wish to support Illuminations?"), 34, 7, -256); - manager.getClient().textRenderer.draw(matrices, new LiteralText("Get cool cosmetics for only 5€!"), 34, 18, -1); - manager.getClient().textRenderer.draw(matrices, new LiteralText("More info: illuminations.uuid.gg/donators").setStyle(Style.EMPTY.withColor(Formatting.GREEN)), 34, 29, -1); + manager.getClient().textRenderer.draw(matrices, new LiteralText("Get cool cosmetics for only 7€!"), 34, 18, -1); + manager.getClient().textRenderer.draw(matrices, new LiteralText("More info: doctor4t.uuid.gg/donators").setStyle(Style.EMPTY.withColor(Formatting.GREEN)), 34, 29, -1); return MinecraftClient.getInstance().currentScreen instanceof TitleScreen ? Visibility.SHOW : Visibility.HIDE; } diff --git a/src/main/java/ladysnake/illuminations/updater/IlluminationsUpdater.java b/src/main/java/ladysnake/illuminations/updater/IlluminationsUpdater.java index 033b65aa..0ea75634 100644 --- a/src/main/java/ladysnake/illuminations/updater/IlluminationsUpdater.java +++ b/src/main/java/ladysnake/illuminations/updater/IlluminationsUpdater.java @@ -26,7 +26,7 @@ public class IlluminationsUpdater { static final ArrayList UNINSTALLER_PARAMS = new ArrayList<>(); - private static final String UPDATES_URL = "https://illuminations.uuid.gg/latest?version="; + private static final String UPDATES_URL = "https://doctor4t.uuid.gg/latest?version="; private static final String UNINSTALLER = "illuminations-uninstaller.jar"; public static boolean NEW_UPDATE = false; diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index f9a16e89..bd9749c7 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -8,7 +8,7 @@ "doctor4t" ], "contact": { - "homepage": "https://illuminations.uuid.gg/", + "homepage": "https://doctor4t.uuid.gg/", "sources": "https://github.com/Ladysnake/Illuminations", "issues": "https://github.com/Ladysnake/Illuminations/issues" },