Package net.fabricmc.api
Interface DedicatedServerModInitializer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A mod initializer ran only on
EnvType.SERVER
.
In fabric.mod.json
, the entrypoint is defined with server
key.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Runs the mod initializer on the server environment.
-
Method Details
-
onInitializeServer
void onInitializeServer()Runs the mod initializer on the server environment.
-