blob: c1dc4af69cb6a708cae084d17adab12991b4de8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package com.keuin.ohmyvanillamc;
import net.fabricmc.api.ModInitializer;
public class OhMyVanillaMinecraft implements ModInitializer {
public static boolean disableFishSchooling = true;
@Override
public void onInitialize() {
// This code runs as soon as Minecraft is in a mod-load-ready state.
// However, some things (like resources) may still be uninitialized.
// Proceed with mild caution.
System.out.println("OhMyVanillaMinecraft is loading...");
}
}
|