
Side Effects
Активный0.0
Установок
1
Последнее обновление
3 года назад
Версии
1.18.2
Сервер
Fabric
Библиотеки
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;
}
}