Compatibility
Minecraft: Java Edition
26.2
26.1
1.21.8
1.21.4–1.21.5
1.21–1.21.1
1.20.6
1.20.4
1.20.1–1.20.2
Platforms
Supported environments
Client-side
Server-side
Links
Tags
Creators
Details
Licensed CC0-1.0
Published last month
Updated 2 weeks ago
Custom Splash
A Fabric mod that replaces or extends the Minecraft title screen yellow splash text.
Usage
Call SplashRegistry.add(String) during mod initialization (or any time before the title screen renders).
import dev.arrbrants.customsplash.SplashRegistry;
public class MyMod implements ModInitializer {
@Override
public void onInitialize() {
SplashRegistry.add("Hello! Fabric!");
SplashRegistry.add("Powered by Mixin");
}
}
Multiple entries are stored in a list. One is chosen at random each time the splash text appears.
When no custom splashes are registered, the vanilla Minecraft splash is displayed normally.


