Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / StructureAbstract.java
Simon Lindgren on 26 Mar 2020 558 bytes first commit
package net.minecraft.server;

public abstract class StructureAbstract extends StructureStart {

    public StructureAbstract(StructureGenerator<?> structuregenerator, int i, int j, StructureBoundingBox structureboundingbox, int k, long l) {
        super(structuregenerator, i, j, structureboundingbox, k, l);
    }

    @Override
    protected void b() {
        super.b();
        boolean flag = true;

        this.c.a -= 12;
        this.c.b -= 12;
        this.c.c -= 12;
        this.c.d += 12;
        this.c.e += 12;
        this.c.f += 12;
    }
}