Skip to content

Commit

Permalink
Issue 1619: RFE: Dirt and Gravel Roads (TacOps p62) Dirt and Gravel R…
Browse files Browse the repository at this point in the history
…oad TF
  • Loading branch information
psikomonkie committed Dec 8, 2024
1 parent 315298c commit 1ddd055
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions megamek/src/megamek/common/Terrains.java
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,12 @@ public static int getTerrainFactor(int type, int level) {
case PAVEMENT:
return 200;
case ROAD:
if (level == 3) {
return 20;
}
if (level == 4) {
return 50;
}
return 150;
case ICE:
case BLACK_ICE:
Expand Down

0 comments on commit 1ddd055

Please sign in to comment.