ConfigType#getTypeClass -> getTypeKey

This commit is contained in:
dfsek
2021-07-22 13:04:33 -07:00
parent 9359ba0c97
commit 82169f0921
10 changed files with 19 additions and 19 deletions
@@ -32,7 +32,7 @@ public class BiomeConfigType implements ConfigType<BiomeTemplate, TerraBiome> {
}
@Override
public TypeKey<TerraBiome> getTypeClass() {
public TypeKey<TerraBiome> getTypeKey() {
return BIOME_TYPE_TOKEN;
}
@@ -26,7 +26,7 @@ public class FeatureConfigType implements ConfigType<FeatureTemplate, Feature> {
}
@Override
public TypeKey<Feature> getTypeClass() {
public TypeKey<Feature> getTypeKey() {
return FEATURE_TYPE_KEY;
}
@@ -26,7 +26,7 @@ public class FloraConfigType implements ConfigType<FloraTemplate, Flora> {
}
@Override
public TypeKey<Flora> getTypeClass() {
public TypeKey<Flora> getTypeKey() {
return FLORA_TYPE_TOKEN;
}
@@ -25,7 +25,7 @@ public class OreConfigType implements ConfigType<OreTemplate, Ore> {
}
@Override
public TypeKey<Ore> getTypeClass() {
public TypeKey<Ore> getTypeKey() {
return ORE_TYPE_TOKEN;
}
@@ -34,7 +34,7 @@ public class PaletteConfigType implements ConfigType<PaletteTemplate, Palette> {
}
@Override
public TypeKey<Palette> getTypeClass() {
public TypeKey<Palette> getTypeKey() {
return PALETTE_TYPE_TOKEN;
}