Skip to content

Commit 9e48581

Browse files
committed
Increased building queue length
The building queue is now not limited to one item but can be varied with BUILDING_QUEUE_LEN constant defined in global.php.
1 parent 53a3ed0 commit 9e48581

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stfc.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,6 @@ CREATE TABLE IF NOT EXISTS `planets` (
10551055
`unittrainid_nexttime` int(10) unsigned NOT NULL default '0',
10561056
`unittrain_error` tinyint(1) unsigned NOT NULL default '0',
10571057
`maintenance_fleet` int(10) unsigned NOT NULL default '0',
1058-
`building_queue` tinyint(3) unsigned NOT NULL default '0',
10591058
`planet_altname` varchar(25) NOT NULL default '',
10601059
`planet_surrender` int(10) default '0',
10611060
`npc_last_action` int(10) unsigned NOT NULL default '0' COMMENT='Tick of last BOT action performed',
@@ -1230,6 +1229,7 @@ CREATE TABLE IF NOT EXISTS `resource_trade` (
12301229
CREATE TABLE IF NOT EXISTS `scheduler_instbuild` (
12311230
`installation_type` tinyint(2) unsigned NOT NULL default '0',
12321231
`planet_id` smallint(5) unsigned NOT NULL default '0',
1232+
`build_start` int(10) unsigned NOT NULL default '0',
12331233
`build_finish` int(10) unsigned NOT NULL default '0'
12341234
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
12351235

0 commit comments

Comments
 (0)