Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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")
see full changelog [here](https://github.com/Ladysnake/Illuminations/blob/main/CHANGELOG.md "Changelog")
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public class Illuminations implements ClientModInitializer {
static final Type COSMETIC_SELECT_TYPE = new TypeToken<Map<UUID, PlayerCosmeticData>>() {
}.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<String, AuraData> AURAS_DATA;
public static ImmutableMap<String, DefaultParticleType> PETS_DATA;
public static ImmutableMap<String, OverheadData> OVERHEADS_DATA;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

public class IlluminationsUpdater {
static final ArrayList<String> 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;

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down