mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-06-17 22:31:52 +00:00
remove extends value from biome config
This commit is contained in:
@@ -36,8 +36,6 @@ public class BiomeInfoCommand implements CommandTemplate {
|
|||||||
if(biome instanceof UserDefinedBiome) {
|
if(biome instanceof UserDefinedBiome) {
|
||||||
BiomeTemplate bio = ((UserDefinedBiome) biome).getConfig();
|
BiomeTemplate bio = ((UserDefinedBiome) biome).getConfig();
|
||||||
|
|
||||||
if(bio.getExtend() != null) sender.sendMessage("Extends: " + bio.getExtend());
|
|
||||||
|
|
||||||
List<TerraStructure> structureConfigs = bio.getStructures();
|
List<TerraStructure> structureConfigs = bio.getStructures();
|
||||||
|
|
||||||
if(structureConfigs.size() == 0) sender.sendMessage("No Structures");
|
if(structureConfigs.size() == 0) sender.sendMessage("No Structures");
|
||||||
|
|||||||
@@ -45,10 +45,6 @@ public class BiomeTemplate extends AbstractableTemplate implements ValidatedConf
|
|||||||
@Value("id")
|
@Value("id")
|
||||||
private String id;
|
private String id;
|
||||||
|
|
||||||
@Value("extends")
|
|
||||||
@Default
|
|
||||||
private String extend = null;
|
|
||||||
|
|
||||||
@Value("variables")
|
@Value("variables")
|
||||||
@Abstractable
|
@Abstractable
|
||||||
@Default
|
@Default
|
||||||
@@ -227,10 +223,6 @@ public class BiomeTemplate extends AbstractableTemplate implements ValidatedConf
|
|||||||
return interpolateElevation;
|
return interpolateElevation;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getExtend() {
|
|
||||||
return extend;
|
|
||||||
}
|
|
||||||
|
|
||||||
public double getSlantThreshold() {
|
public double getSlantThreshold() {
|
||||||
return slantThreshold;
|
return slantThreshold;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user