Skip to content

Commit

Permalink
Fix indices of baked-earth and green-mud in the terrain table
Browse files Browse the repository at this point in the history
Their IDs don't match the indices of the TYPE_OF_TERRAIN enum causing confusion when accessing asTerrainTable.
  • Loading branch information
KJeff01 committed Sep 27, 2023
1 parent d92ee42 commit ab2db15
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions data/base/stats/terraintable.json
Expand Up @@ -25,30 +25,30 @@
"half-tracked": 100
}
},
"greenmud": {
"bakedearth": {
"id": 2,
"comment": "Green Mud",
"comment": "Baked Earth",
"speedFactor": {
"wheeled": 80,
"tracked": 100,
"tracked": 90,
"legged": 100,
"hover": 150,
"hover": 100,
"lift": 250,
"propellor": 100,
"half-tracked": 100
"half-tracked": 80
}
},
"bakedearth": {
"greenmud": {
"id": 3,
"comment": "Baked Earth",
"comment": "Green Mud",
"speedFactor": {
"wheeled": 80,
"tracked": 90,
"tracked": 100,
"legged": 100,
"hover": 100,
"hover": 150,
"lift": 250,
"propellor": 100,
"half-tracked": 80
"half-tracked": 100
}
},
"redbrush": {
Expand Down

0 comments on commit ab2db15

Please sign in to comment.