diff --git a/megamek/src/megamek/utilities/BoardsTagger.java b/megamek/src/megamek/utilities/BoardsTagger.java index 7d71818a005..9c7acb2ff81 100644 --- a/megamek/src/megamek/utilities/BoardsTagger.java +++ b/megamek/src/megamek/utilities/BoardsTagger.java @@ -234,7 +234,7 @@ private static void tagBoard(File boardFile) { int impassable = 0; int elevator = 0; int multipleTheme = 0; - int underWaterBride = 0; + int underWaterBridge = 0; for (int x = 0; x < board.getWidth(); x++) { for (int y = 0; y < board.getHeight(); y++) { @@ -296,7 +296,7 @@ private static void tagBoard(File boardFile) { if (hex.containsTerrain(WATER) && hex.containsTerrain(BRIDGE) && (hex.terrainLevel(BRIDGE_ELEV) < hex.terrainLevel(WATER))) { - underWaterBride++; + underWaterBridge++; } } } @@ -366,7 +366,7 @@ private static void tagBoard(File boardFile) { multipleTheme += snowTheme > 0 ? 1 : 0; multipleTheme += volcanic > 0 ? 1 : 0; matchingTags.put(Tags.TAG_MULTIPLETHEME, multipleTheme > 1); - matchingTags.put(Tags.TAG_UNDERWATERBRIDGE, underWaterBride > 0); + matchingTags.put(Tags.TAG_UNDERWATERBRIDGE, underWaterBridge > 0); // Remove (see below) any auto tags that might be present so that auto tags that // no longer apply