mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Fixed the SQL schema to work with the map server as well as updated the server id in the config file to match that in the database
This commit is contained in:
parent
23aef8cc46
commit
49a4bf1ab0
@ -716,6 +716,7 @@ CREATE TABLE `server_zones_spawnlocations` (
|
||||
`spawnY` float NOT NULL,
|
||||
`spawnZ` float NOT NULL,
|
||||
`spawnRotation` float NOT NULL,
|
||||
`privateAreaName` varchar(10) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
|
||||
|
||||
@ -35843,11 +35844,11 @@ INSERT INTO `server_zones` VALUES ('267', '109', null, 'Rivenroad', '', '0', '0'
|
||||
INSERT INTO `server_zones` VALUES ('268', '109', null, 'Rivenroad', '', '0', '0', '0', '0', '0', '0', '0', '0');
|
||||
INSERT INTO `server_zones` VALUES ('269', '101', null, 'Locke\'s Lie', '', '0', '0', '0', '0', '0', '0', '0', '0');
|
||||
INSERT INTO `server_zones` VALUES ('270', '101', null, 'Turtleback Island', '', '0', '0', '0', '0', '0', '0', '0', '0');
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('1', '155', '2', '58.92', '4', '-1219.07', '0.52');
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('2', '133', '2', '-444.266', '39.518', '191', '1.9');
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('3', '175', '2', '-110.157', '202', '171.345', '0');
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('4', '193', '2', '0.016', '10.35', '-36.91', '0.025');
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('5', '166', '2', '356.09', '3.74', '-701.62', '-1.4');
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('6', '184', '2', '12.63', '196.05', '131.01', '-1.34');
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('7', '128', '2', '-8.48', '45.36', '139.5', '2.02');
|
||||
INSERT INTO `servers` VALUES ('3', 'Localhost', '127.0.0.1', '54992', '4', '0', '5000', '1');
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('1', '155', '2', '58.92', '4', '-1219.07', '0.52', NULL);
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('2', '133', '2', '-444.266', '39.518', '191', '1.9', NULL);
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('3', '175', '2', '-110.157', '202', '171.345', '0', NULL);
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('4', '193', '2', '0.016', '10.35', '-36.91', '0.025', NULL);
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('5', '166', '2', '356.09', '3.74', '-701.62', '-1.4', NULL);
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('6', '184', '2', '12.63', '196.05', '131.01', '-1.34', NULL);
|
||||
INSERT INTO `server_zones_spawnlocations` VALUES ('7', '128', '2', '-8.48', '45.36', '139.5', '2.02', NULL);
|
||||
INSERT INTO `servers` VALUES ('1', 'Localhost', '127.0.0.1', '54992', '4', '0', '5000', '1');
|
Loading…
Reference in New Issue
Block a user