diff --git a/src/micropolisj/engine/TileConstants.java b/src/micropolisj/engine/TileConstants.java index 67e7779..ef34d70 100644 --- a/src/micropolisj/engine/TileConstants.java +++ b/src/micropolisj/engine/TileConstants.java @@ -390,12 +390,6 @@ public class TileConstants ((cell & LOMASK) <= LASTRUBBLE)); } - public static boolean isTinyExplosion(int tile) - { - int tmp = tile & LOMASK; - return (tmp >= SOMETINYEXP && tmp <= LASTTINYEXP); - } - public static boolean isTree(char cell) { return (((cell & LOMASK) >= WOODS_LOW) && @@ -468,12 +462,6 @@ public class TileConstants return tile >= 0 && (tile & BULLBIT) != 0; } - public static boolean isFlood(int tile) - { - int tmp = tile & LOMASK; - return (tmp >= FLOOD && tmp < RADTILE); - } - static boolean isFloodable(int tile) { return (tile == DIRT || ((tile & BULLBIT) != 0 && isCombustible(tile)));