add chorus exploit

This commit is contained in:
C10udburst
2022-03-17 17:33:37 +01:00
parent b174cb4949
commit b75cd8a2e2
5 changed files with 289 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package anticope.rejects.events;
public class TeleportParticleEvent {
private static final TeleportParticleEvent INSTANCE = new TeleportParticleEvent();
public double x, y, z;
public static TeleportParticleEvent get(double x, double y, double z) {
INSTANCE.x = x;
INSTANCE.y = y;
INSTANCE.z = z;
return INSTANCE;
}
}