Скачать Side Effects — Minecraft Моды — ModStock

Side Effects

Активный

Установок

1

Последнее обновление

3 года назад

Версии

1.18.2
Сервер
Fabric
Библиотеки

Side Effects

A extremely lightweight library for creating server-side mod that works for unmodded clients!

JitPack status

Add to project:

repositories {
  // other repo
  maven { url "https://jitpack.io" }
}
dependencies {
  // other deps
  modImplementation "moe.hertz:side-effects:(version)"
}

Non-Goal

  1. Converting existing mods to server side.
  2. 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;
  }
}
Участники проекта
codehz

codehz

Разработчик