diff options
| author | Franklin Wei <frankhwei536@gmail.com> | 2014-06-23 15:27:19 -0400 |
|---|---|---|
| committer | Franklin Wei <frankhwei536@gmail.com> | 2014-06-23 15:27:19 -0400 |
| commit | f44ca804e570f645d15a372b8f38817027038021 (patch) | |
| tree | 641b26557c59429f86ecbc35786bd0a0a94bda68 /location.h | |
| parent | c9568d63b106f5a7d16b5f28d090fa7ec8cd76a1 (diff) | |
| download | wargames-server-f44ca804e570f645d15a372b8f38817027038021.zip wargames-server-f44ca804e570f645d15a372b8f38817027038021.tar.gz wargames-server-f44ca804e570f645d15a372b8f38817027038021.tar.bz2 wargames-server-f44ca804e570f645d15a372b8f38817027038021.tar.xz | |
Fixed some location errors
Diffstat (limited to 'location.h')
| -rw-r--r-- | location.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -8,7 +8,7 @@ struct location_t world[]={ /* US cities */ {"las vegas", 5, 7}, {"seattle", 3, 2}, - {"new york", 35, 4}, + {"new york", 34, 5}, {"new orleans", 25, 10}, {"washington", 33, 6}, {"washington dc", 33, 6}, @@ -18,7 +18,7 @@ struct location_t world[]={ /* Soviet cities */ /* NOTE: These are not neccessarily correct. I simply eyed them relative to Murmansk */ - {"murmansk", 2, 73}, - {"moscow", 5, 70}, - {"minsk", 4, 66}, + {"murmansk", 74, 1}, + {"moscow", 70, 5}, + {"minsk", 66, 4}, }; |