diff --git a/core/src/main/assets/environment/terrain_features.png b/core/src/main/assets/environment/terrain_features.png index dade5e800..11cade13f 100644 Binary files a/core/src/main/assets/environment/terrain_features.png and b/core/src/main/assets/environment/terrain_features.png differ diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/TerrainFeaturesTilemap.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/TerrainFeaturesTilemap.java index 030a390e0..bdd9ffe29 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/TerrainFeaturesTilemap.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/tiles/TerrainFeaturesTilemap.java @@ -23,8 +23,6 @@ package com.shatteredpixel.shatteredpixeldungeon.tiles; import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; -import com.shatteredpixel.shatteredpixeldungeon.levels.LastShopLevel; -import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.Trap; import com.shatteredpixel.shatteredpixeldungeon.plants.Plant; import com.watabou.noosa.Image; @@ -64,18 +62,6 @@ public class TerrainFeaturesTilemap extends DungeonTilemap { return plants.get(pos).image + 7*16; } - int stage = (Dungeon.depth-1)/5; - if (Dungeon.depth == 21 && Dungeon.level instanceof LastShopLevel) stage--; - if (tile == Terrain.HIGH_GRASS){ - return 9 + 16*stage + (DungeonTileSheet.tileVariance[pos] >= 50 ? 1 : 0); - } else if (tile == Terrain.FURROWED_GRASS){ - return 11 + 16*stage + (DungeonTileSheet.tileVariance[pos] >= 50 ? 1 : 0); - } else if (tile == Terrain.GRASS) { - return 13 + 16*stage + (DungeonTileSheet.tileVariance[pos] >= 50 ? 1 : 0); - } else if (tile == Terrain.EMBERS) { - return 9 * (16*5) + (DungeonTileSheet.tileVariance[pos] >= 50 ? 1 : 0); - } - return -1; }