Add Extensions #187
@ -240,6 +240,11 @@ public class Region {
|
|||||||
private final int offsetY;
|
private final int offsetY;
|
||||||
private final int offsetZ;
|
private final int offsetZ;
|
||||||
|
|
||||||
|
private final int extensionFront;
|
||||||
|
private final int extensionBack;
|
||||||
|
private final int extensionUp;
|
||||||
|
private final int extensionSides;
|
||||||
|
|
||||||
private final String schematic;
|
private final String schematic;
|
||||||
private final boolean rotate;
|
private final boolean rotate;
|
||||||
|
|
||||||
@ -256,6 +261,10 @@ public class Region {
|
|||||||
offsetX = config.getInt("offsetX", 0);
|
offsetX = config.getInt("offsetX", 0);
|
||||||
offsetY = config.getInt("offsetY", 0);
|
offsetY = config.getInt("offsetY", 0);
|
||||||
offsetZ = config.getInt("offsetZ", 0);
|
offsetZ = config.getInt("offsetZ", 0);
|
||||||
|
extensionFront = config.getInt("extensionFront", 0);
|
||||||
|
extensionBack = config.getInt("extensionBack", 0);
|
||||||
|
extensionUp = config.getInt("extensionUp", 0);
|
||||||
|
extensionSides = config.getInt("extensionSides", 0);
|
||||||
rotate = config.getBoolean("rotate", false);
|
rotate = config.getBoolean("rotate", false);
|
||||||
|
|
||||||
ConfigurationSection testblockSection = config.getConfigurationSection("testblock");
|
ConfigurationSection testblockSection = config.getConfigurationSection("testblock");
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren