Replace getBlockRandomPos implementation

This commit is contained in:
DBotThePony 2025-03-10 19:02:02 +07:00
parent 85e7505d30
commit 0ae2319ddc
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,18 @@
package ru.dbotthepony.mc.prng.mixin;
import net.minecraft.core.BlockPos;
import net.minecraft.world.level.Level;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Overwrite;
@Mixin(Level.class)
public abstract class LevelMixin {
@Overwrite
public BlockPos getBlockRandomPos(int x, int y, int z, int yMask) {
long value = ((Level) (Object) this).random.nextLong();
int selectX = (int) (value & 15);
int selectZ = (int) ((value >>> 8) & 15);
int selectY = (int) ((value >>> 16) & yMask);
return new BlockPos(selectX + x, selectY + y, selectZ + z);
}
}

View File

@ -5,7 +5,8 @@
"compatibilityLevel": "JAVA_21",
"minVersion": "0.8",
"mixins": [
"RandomSourceMixin"
"RandomSourceMixin",
"LevelMixin"
],
"client": []
}