Skip to content

Commit

Permalink
Biome type "Mesa" auto-registers to Plateau. Bumped version to 4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Hunternif committed Feb 13, 2015
1 parent 828c711 commit bdf8d3b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {

apply plugin: 'forge'

version = "4.2-1.7.10"
version = "4.2.1-1.7.10"
group= "hunternif.mc.atlas" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "antiqueatlas"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/hunternif/mc/atlas/AntiqueAtlasMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class AntiqueAtlasMod {
public static final String ID = "antiqueatlas";
public static final String NAME = "Antique Atlas";
public static final String CHANNEL = ID;
public static final String VERSION = "4.2-1.7.10";
public static final String VERSION = "4.2.1-1.7.10";

@Instance(ID)
public static AntiqueAtlasMod instance;
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/hunternif/mc/atlas/client/BiomeTextureMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,12 @@ else if (types.contains(Type.CONIFEROUS)) {
setTexture(biomeID, PINES);
}
}
// 7. Mesa
// 7. Mesa - I suspect that by using this type people usually mean "Plateau"
else if (types.contains(Type.MESA)) {
if (types.contains(Type.MOUNTAIN)) {
setTexture(biomeID, BRYCE);
if (types.contains(Type.FOREST)) {
setTexture(biomeID, PLATEAU_MESA_TREES);
} else {
setTexture(biomeID, MESA);
setTexture(biomeID, PLATEAU_MESA);
}
}
// 8. General forest
Expand Down

0 comments on commit bdf8d3b

Please sign in to comment.