seedcrackerX integration

This commit is contained in:
C10udburst
2022-03-13 07:17:46 +01:00
parent 853d85afd5
commit 891ad30727
4 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package anticope.rejects.utils;
import anticope.rejects.utils.seeds.Seeds;
import kaptainwutax.seedcrackerX.api.SeedCrackerAPI;
import meteordevelopment.meteorclient.utils.player.ChatUtils;
public class SeedCrackerEP implements SeedCrackerAPI {
@Override
public void pushWorldSeed(long seed) {
Seeds.get().setSeed(String.format("%d", seed));
ChatUtils.info("Seed", "Added seed from SeedCrackerX");
}
}