diff options
author | Timothy Pearson <[email protected]> | 2012-01-25 16:35:27 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-04 01:10:55 +0200 |
commit | abbad031ecb7c1263b0981c68b058554ab479f48 (patch) | |
tree | 378830e9ffe4eb04796846014e611713ecd8fe82 /konquest/gamecore.cc | |
parent | d984ed6b76b380cdc0cfd88ea6ba26243ec34352 (diff) | |
download | tdegames-abbad031ecb7c1263b0981c68b058554ab479f48.tar.gz tdegames-abbad031ecb7c1263b0981c68b058554ab479f48.zip |
Fix linear alphabet string errors
(cherry picked from commit edc913ee43321fb5ebafe5b4061d7623e9981af7)
Diffstat (limited to 'konquest/gamecore.cc')
-rw-r--r-- | konquest/gamecore.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/konquest/gamecore.cc b/konquest/gamecore.cc index 6696cbea..5f3e60c5 100644 --- a/konquest/gamecore.cc +++ b/konquest/gamecore.cc @@ -94,7 +94,7 @@ Map::populateMap( PlayerList &players, Player *neutral, Freeze(); int index = 0; - TQString names( "ABCDEFGHIJKLMNOPTQRSTUVWXYZ1234567890!@#$%^&*(),.<>;:[]{}/?-+\\|" ); + TQString names( "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),.<>;:[]{}/?-+\\|" ); // Create a planet for each player Player *plr; |