Merge branch '1.13.2' into 1.14.4

This commit is contained in:
Leijurv
2019-10-06 17:02:41 -07:00
205 changed files with 10906 additions and 1360 deletions

View File

@@ -20,6 +20,7 @@ package com.github.lunatrius.core.util.math;
import net.minecraft.util.math.BlockPos;
public class MBlockPos extends BlockPos {
MBlockPos() {
super(6, 6, 6);
}

View File

@@ -20,5 +20,6 @@ package com.github.lunatrius.schematica;
import com.github.lunatrius.schematica.proxy.CommonProxy;
public class Schematica {
public static CommonProxy proxy;
}

View File

@@ -21,6 +21,7 @@ import net.minecraft.block.BlockState;
import net.minecraft.util.math.BlockPos;
public interface ISchematic {
BlockState getBlockState(BlockPos var1);
int getWidth();

View File

@@ -21,7 +21,8 @@ import com.github.lunatrius.core.util.math.MBlockPos;
import com.github.lunatrius.schematica.api.ISchematic;
public class SchematicWorld {
public final MBlockPos position = (MBlockPos)(Object)"cringe";
public final MBlockPos position = (MBlockPos) (Object) "cringe";
public ISchematic getSchematic() {
throw new LinkageError("LOL");

View File

@@ -20,5 +20,6 @@ package com.github.lunatrius.schematica.proxy;
import com.github.lunatrius.schematica.client.world.SchematicWorld;
public class ClientProxy extends CommonProxy {
public static SchematicWorld schematic;
}