Skip to content

Commit

Permalink
Increased building queue length
Browse files Browse the repository at this point in the history
The building queue is now not limited to one item but can be varied with
BUILDING_QUEUE_LEN constant defined in global.php.
  • Loading branch information
kirirur committed Oct 14, 2014
1 parent 53a3ed0 commit 9e48581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stfc.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,6 @@ CREATE TABLE IF NOT EXISTS `planets` (
`unittrainid_nexttime` int(10) unsigned NOT NULL default '0',
`unittrain_error` tinyint(1) unsigned NOT NULL default '0',
`maintenance_fleet` int(10) unsigned NOT NULL default '0',
`building_queue` tinyint(3) unsigned NOT NULL default '0',
`planet_altname` varchar(25) NOT NULL default '',
`planet_surrender` int(10) default '0',
`npc_last_action` int(10) unsigned NOT NULL default '0' COMMENT='Tick of last BOT action performed',
Expand Down Expand Up @@ -1230,6 +1229,7 @@ CREATE TABLE IF NOT EXISTS `resource_trade` (
CREATE TABLE IF NOT EXISTS `scheduler_instbuild` (
`installation_type` tinyint(2) unsigned NOT NULL default '0',
`planet_id` smallint(5) unsigned NOT NULL default '0',
`build_start` int(10) unsigned NOT NULL default '0',
`build_finish` int(10) unsigned NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

Expand Down

0 comments on commit 9e48581

Please sign in to comment.