Skip to content

Commit 59c2ed2

Browse files
author
hogantp
committed
added initial support for automatic matchmaking
added new map config value map_scorecategory updated MySQL database schema files the MySQL database code will now only keep up to 30 idle connections open the MySQL database code will now print error messages to the console added some new entries to language.cfg fixed some typos in readme.txt updated readme.txt
1 parent 67dce03 commit 59c2ed2

20 files changed

+699
-40
lines changed

ghost/game.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ typedef pair<string,CCallableDotAPlayerSummaryCheck *> PairedDPSCheck;
4343
class CGame : public CBaseGame
4444
{
4545
protected:
46-
CDBBan * m_DBBanLast; // last ban for the !banlast command - this is a pointer to one of the items in m_DBBans
46+
CDBBan *m_DBBanLast; // last ban for the !banlast command - this is a pointer to one of the items in m_DBBans
4747
vector<CDBBan *> m_DBBans; // vector of potential ban data for the database (see the Update function for more info, it's not as straightforward as you might think)
4848
CDBGame *m_DBGame; // potential game data for the database
4949
vector<CDBGamePlayer *> m_DBGamePlayers; // vector of potential gameplayer data for the database

0 commit comments

Comments
 (0)