Try PCG as otm provided random
This commit is contained in:
parent
3bcfd55154
commit
7251760800
@ -5,11 +5,11 @@ import net.minecraft.world.level.Level;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import ru.dbotthepony.mc.otm.core.IMatteryLevel;
|
||||
import ru.dbotthepony.mc.otm.core.util.Xoshiro256Random;
|
||||
import ru.dbotthepony.mc.otm.core.util.PCG32RandomSource;
|
||||
|
||||
@Mixin(Level.class)
|
||||
public abstract class LevelMixin implements IMatteryLevel {
|
||||
public final RandomSource otm_random = new Xoshiro256Random();
|
||||
public final RandomSource otm_random = new PCG32RandomSource();
|
||||
|
||||
@Override
|
||||
public @NotNull RandomSource getOtmRandom() {
|
||||
|
Loading…
Reference in New Issue
Block a user