Language

Side Effects

Side Effects

Modrinth

Abuse of vanilla features as side effects! (current support fake entity)

316 downloads 3 followers updated 50mo ago
Modrinth
Fabric 1.18.2 – 1.18.2 Library

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;
  }
}

Versions

No version history available. Use the Download button to get the latest from the source.

Comments 0

No comments yet. Be the first to share your thoughts.

Download Side Effects

Files are served directly from the original source. Modgrid does not host or modify them.