Fix linear alphabet string errors

pull/1/head
Timothy Pearson 12 years ago
parent ef45d20eff
commit edc913ee43

@ -493,7 +493,7 @@ void KBgEngineFIBS::changeJoin(const TQString &info)
*/ */
void KBgEngineFIBS::keepAlive() void KBgEngineFIBS::keepAlive()
{ {
emit serverString("ABCDEFGHIJKLMNOPTQRSTUVWXYZ"); emit serverString("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
} }
/* /*
@ -1234,7 +1234,7 @@ void KBgEngineFIBS::initPattern()
pat[RejAcpt] = TQRegExp("Type 'accept' or 'reject'\\.$"); pat[RejAcpt] = TQRegExp("Type 'accept' or 'reject'\\.$");
pat[YouAcpt] = TQRegExp("^You accept the double\\. The cube shows [0-9]+\\."); pat[YouAcpt] = TQRegExp("^You accept the double\\. The cube shows [0-9]+\\.");
pat[KeepAlv] = TQRegExp("^\\*\\* Unknown command: 'ABCDEFGHIJKLMNOPTQRSTUVWXYZ'"); pat[KeepAlv] = TQRegExp("^\\*\\* Unknown command: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'");
pat[RatingY] = TQRegExp("You'll see how the rating changes are calculated\\.$"); pat[RatingY] = TQRegExp("You'll see how the rating changes are calculated\\.$");
pat[RatingN] = TQRegExp("You won't see how the rating changes are calculated\\.$"); pat[RatingN] = TQRegExp("You won't see how the rating changes are calculated\\.$");

@ -94,7 +94,7 @@ Map::populateMap( PlayerList &players, Player *neutral,
Freeze(); Freeze();
int index = 0; int index = 0;
TQString names( "ABCDEFGHIJKLMNOPTQRSTUVWXYZ1234567890!@#$%^&*(),.<>;:[]{}/?-+\\|" ); TQString names( "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),.<>;:[]{}/?-+\\|" );
// Create a planet for each player // Create a planet for each player
Player *plr; Player *plr;

Loading…
Cancel
Save