Skip to content

Commit

Permalink
Removed splash texts.
Browse files Browse the repository at this point in the history
  • Loading branch information
VipCoder8 committed Nov 4, 2024
1 parent 54f34cb commit 4869101
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package net.fyoncle.elysiumdaystweaks.mixin;

import net.minecraft.client.font.TextRenderer;
import net.minecraft.client.gui.DrawContext;
import net.minecraft.client.gui.screen.SplashTextRenderer;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Overwrite;

@Mixin(SplashTextRenderer.class)
public class SplashRemoverMixin {
@Overwrite
public void render(DrawContext context, int screenWidth, TextRenderer textRenderer, int alpha) {}
}
5 changes: 3 additions & 2 deletions src/main/resources/elysium-days-tweaks.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
"mixins": [
],
"client": [
"ResourcePackLock",
"CustomIconMixin",
"CustomTitleMixin",
"EscapeMenuMixin",
"MainMenuMixin",
"MenuLogo"
"MenuLogo",
"ResourcePackLock",
"SplashRemoverMixin"
],
"injectors": {
"defaultRequire": 1
Expand Down

0 comments on commit 4869101

Please sign in to comment.