Changed BlockPlan#block to Block
This commit is contained in:
@@ -435,11 +435,12 @@ public class Teams{
|
||||
/** Represents a block made by this team that was destroyed somewhere on the map.
|
||||
* This does not include deconstructed blocks.*/
|
||||
public static class BlockPlan{
|
||||
public final short x, y, rotation, block;
|
||||
public final short x, y, rotation;
|
||||
public final Block block;
|
||||
public final Object config;
|
||||
public boolean removed;
|
||||
|
||||
public BlockPlan(int x, int y, short rotation, short block, Object config){
|
||||
public BlockPlan(int x, int y, short rotation, Block block, Object config){
|
||||
this.x = (short)x;
|
||||
this.y = (short)y;
|
||||
this.rotation = rotation;
|
||||
|
||||
Reference in New Issue
Block a user