mirror of
https://github.com/FabricMC/fabric.git
synced 2025-03-24 22:11:18 -04:00
1.17-rc (Just mappings)
This is a little behind just wanted to get it building against rc1
This commit is contained in:
parent
b7ab612143
commit
be9da31056
5 changed files with 10 additions and 10 deletions
|
@ -19,9 +19,9 @@ plugins {
|
|||
def ENV = System.getenv()
|
||||
|
||||
class Globals {
|
||||
static def baseVersion = "0.34.8"
|
||||
static def mcVersion = "1.17-pre1"
|
||||
static def yarnVersion = "+build.1"
|
||||
static def baseVersion = "0.34.9"
|
||||
static def mcVersion = "1.17-rc1"
|
||||
static def yarnVersion = "+build.5"
|
||||
static def loaderVersion = "0.11.3"
|
||||
static def preRelease = true
|
||||
}
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
archivesBaseName = "fabric-crash-report-info-v1"
|
||||
version = getSubprojectVersion(project, "0.1.4")
|
||||
version = getSubprojectVersion(project, "0.1.5")
|
||||
|
|
|
@ -26,19 +26,19 @@ import org.spongepowered.asm.mixin.injection.At;
|
|||
import org.spongepowered.asm.mixin.injection.Inject;
|
||||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||
|
||||
import net.minecraft.class_6396;
|
||||
import net.minecraft.util.SystemDetails;
|
||||
|
||||
import net.fabricmc.loader.api.FabricLoader;
|
||||
import net.fabricmc.loader.api.ModContainer;
|
||||
|
||||
@Mixin(class_6396.class)
|
||||
@Mixin(SystemDetails.class)
|
||||
public abstract class MixinCrashReport {
|
||||
@Shadow
|
||||
public abstract void method_37123(String string, Supplier<String> supplier);
|
||||
public abstract void addSection(String string, Supplier<String> supplier);
|
||||
|
||||
@Inject(at = @At("RETURN"), method = "<init>")
|
||||
private void fillSystemDetails(CallbackInfo info) {
|
||||
method_37123("Fabric Mods", () -> {
|
||||
addSection("Fabric Mods", () -> {
|
||||
Map<String, String> mods = new TreeMap<>();
|
||||
|
||||
for (ModContainer container : FabricLoader.getInstance().getAllMods()) {
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
archivesBaseName = "fabric-structure-api-v1"
|
||||
version = getSubprojectVersion(project, "1.1.9")
|
||||
version = getSubprojectVersion(project, "1.1.10")
|
||||
|
|
|
@ -96,7 +96,7 @@ public class StructureTest {
|
|||
|
||||
public static class TestStructureGenerator extends StructurePieceWithDimensions {
|
||||
public TestStructureGenerator(Random random, int x, int y, int z) {
|
||||
super(PIECE, x, y, z, 0, 48, 16, method_35457(random));
|
||||
super(PIECE, x, y, z, 0, 48, 16, getRandomHorizontalDirection(random));
|
||||
}
|
||||
|
||||
protected TestStructureGenerator(ServerWorld serverWorld, NbtCompound compoundTag) {
|
||||
|
|
Loading…
Add table
Reference in a new issue