Compatibility
Minecraft: Java Edition
1.18.2
Platforms
Fabric
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Licensed LGPL-3.0-only
Published 2 years ago
Updated 2 years ago
Side Effects
A extremely lightweight library for creating server-side mod that works for unmodded clients!
Add to project:
repositories {
// other repo
maven { url "https://jitpack.io" }
}
dependencies {
// other deps
modImplementation "moe.hertz:side-effects:(version)"
}
Non-Goal
- Converting existing mods to server side.
- Full replacement for similar mod Polymer or PolyMc because I want to make it keeping lightweight.
Status
Currently, only custom(fake) entity is supported.
Docs is Coming Soonâ„¢
Example usage with this library:
Code example:
public class BatTrader extends BatEntity implements IFakeEntity {
public BatTrader(EntityType<? extends BatEntity> entityType, World world) {
super(entityType, world);
}
@Override
public EntityType<?> getFakeType() {
return EntityType.BAT;
}
}