Skip to content

Commit de9c7f6

Browse files
committed
Merge branch 'master' of github.com:Monkestation/Monkestation2.0 into the-best-idea-ever
2 parents 704ff7e + 033df83 commit de9c7f6

File tree

500 files changed

+9209
-4998
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

500 files changed

+9209
-4998
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ icon_exists_cache.json
99
#Ignore everything in datafolder and subdirectories
1010
/data/**/*
1111
/tmp/**/*
12+
/cache/**/*
1213

1314
#Ignore byond config folder.
1415
/cfg/**/*

RUN_SERVER.cmd

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
call "%~dp0\tools\build\build.bat" --wait-on-error server %*

SQL/tgstation_schema.sql

-50
Original file line numberDiff line numberDiff line change
@@ -721,23 +721,6 @@ CREATE TABLE `tutorial_completions` (
721721
PRIMARY KEY (`id`),
722722
UNIQUE INDEX `ckey_tutorial_unique` (`ckey`, `tutorial_key`));
723723

724-
--
725-
-- Table structure for table `metric_data`
726-
--
727-
DROP TABLE IF EXISTS `metric_data`;
728-
CREATE TABLE `metric_data` (
729-
`id` int(11) NOT NULL AUTO_INCREMENT,
730-
`datetime` datetime NOT NULL,
731-
`cpu` decimal(20,10) unsigned DEFAULT NULL,
732-
`maptick` decimal(20,10) unsigned DEFAULT NULL,
733-
`elapsed_processed` int(15) unsigned DEFAULT NULL,
734-
`elapsed_real` int(15) unsigned DEFAULT NULL,
735-
`client_count` int(15) unsigned DEFAULT NULL,
736-
`round_id` int(15) unsigned DEFAULT NULL,
737-
`relational_id` varchar(255) DEFAULT NULL,
738-
PRIMARY KEY (`id`) USING BTREE
739-
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
740-
741724
--
742725
-- Table structure for table `overwatch_asn_ban`
743726
--
@@ -771,39 +754,6 @@ CREATE TABLE `overwatch_whitelist` (
771754
PRIMARY KEY (`ckey`)
772755
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
773756

774-
--
775-
-- Table structure for table `subsystem_extra_metrics`
776-
--
777-
DROP TABLE IF EXISTS `subsystem_extra_metrics`;
778-
CREATE TABLE `subsystem_extra_metrics` (
779-
`id` int(11) NOT NULL AUTO_INCREMENT,
780-
`datetime` datetime NOT NULL,
781-
`round_id` int(15) unsigned DEFAULT NULL,
782-
`ss_id` varchar(255) DEFAULT NULL,
783-
`relation_id_SS` varchar(255) DEFAULT NULL,
784-
`ss_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
785-
PRIMARY KEY (`id`) USING BTREE,
786-
CONSTRAINT `ss_value` CHECK (json_valid(`ss_value`))
787-
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
788-
789-
--
790-
-- Table structure for table `metric_data`
791-
--
792-
DROP TABLE IF EXISTS `subsystem_metrics`;
793-
CREATE TABLE `subsystem_metrics` (
794-
`id` int(11) NOT NULL AUTO_INCREMENT,
795-
`avg_iter_count` decimal(20,6) NOT NULL DEFAULT 0.000000,
796-
`avg_drift` decimal(20,6) NOT NULL DEFAULT 0.000000,
797-
`datetime` datetime NOT NULL,
798-
`round_id` int(15) unsigned DEFAULT NULL,
799-
`ss_id` varchar(255) DEFAULT NULL,
800-
`relational_id` varchar(255) DEFAULT NULL,
801-
`relation_id_SS` varchar(255) DEFAULT NULL,
802-
`cost` decimal(20,6) unsigned DEFAULT NULL,
803-
`tick_usage` decimal(20,6) unsigned DEFAULT NULL,
804-
PRIMARY KEY (`id`) USING BTREE
805-
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
806-
807757
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
808758
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
809759
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;

_maps/RandomRuins/SpaceRuins/syndicate_depot.dmm

-1
Original file line numberDiff line numberDiff line change
@@ -1607,7 +1607,6 @@
16071607
/obj/effect/mapping_helpers/apc/cell_10k,
16081608
/obj/structure/safe,
16091609
/obj/item/stack/telecrystal/five,
1610-
/obj/item/stack/telecrystal/twenty,
16111610
/obj/effect/mapping_helpers/apc/cut_AI_wire,
16121611
/obj/item/card/id/advanced/chameleon,
16131612
/obj/item/card/id/advanced/chameleon,

0 commit comments

Comments
 (0)