-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master220' into service-borg-is-real
- Loading branch information
Showing
1,113 changed files
with
28,742 additions
and
19,633 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,26 @@ | ||
# This list auto requests reviews from the specified maintainer when a PR that modifies the file in question is opened | ||
# This list is alphabetized by User -> Filename KEEP IT THAT WAY | ||
# In the event that multiple org members are to be informed of changes to the same file or dir, add them to the end under Multiple Owners | ||
# This is ONLY for taking ownership of server-critical code which must be written in a very specific way for the server to operate at all. | ||
# This list auto requests reviews from the specified org members | ||
# when a PR that modifies the file in question is opened | ||
# This list is alphabetized by User -> Filename and separated into sections for Maintainers/Contributors KEEP IT THAT WAY | ||
# In the event that people are to be informed of changes | ||
# to the same file or dir, add them to the end of under Multiple Owners | ||
|
||
### AffectedArc07 | ||
# Actual Code | ||
/code/controllers/subsystem/mapping.dm @AffectedArc07 | ||
/code/controllers/subsystem/ticker.dm @AffectedArc07 | ||
/tgui/ @AffectedArc07 | ||
|
||
# CI + Tooling | ||
/.github/workflows/ @AffectedArc07 | ||
/code/modules/unit_tests/ @AffectedArc07 | ||
/tools/ci/ @AffectedArc07 | ||
# MAINTAINERS | ||
|
||
# Executables that need to be security-cleared | ||
dreamchecker.exe @AffectedArc07 | ||
rust_g.dll @AffectedArc07 | ||
### azizonkg | ||
# CI + Tooling | ||
/.github/workflows/ @Bizzonium | ||
/code/modules/unit_tests/ @Bizzonium | ||
/tools/ci/ @Bizzonium | ||
_build_dependencies.sh @Bizzonium | ||
|
||
# Server Stuff | ||
/SQL/ @Bizzonium | ||
/config/ @Bizzonium | ||
|
||
# Executables that need to be security-cleared | ||
dreamchecker.exe @Bizzonium | ||
rust_g.dll @Bizzonium | ||
|
||
### Fox-McCloud | ||
/code/ATMOSPHERICS/ @Fox-McCloud | ||
/code/controllers/subsystem/air.dm @Fox-McCloud | ||
/code/controllers/subsystem/garbage.dm @Fox-McCloud | ||
/code/modules/reagents/chemistry/holder.dm @Fox-McCloud | ||
/code/modules/reagents/chemistry/reagents.dm @Fox-McCloud | ||
# MULTIPLE OWNERS | ||
/_maps/ @ss220-space/map-reviewers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Add exploit records | ||
ALTER TABLE `characters` | ||
ADD COLUMN `exploit_record` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL AFTER `gen_record`; | ||
# Adds support for persistent ghost darkness | ||
ALTER TABLE `player` ADD COLUMN `ghost_darkness_level` tinyint(1) UNSIGNED NOT NULL DEFAULT '255' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Adds tracking of who flagged which book. | ||
ALTER TABLE `library` ADD COLUMN `flaggedby` VARCHAR(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ' ' AFTER `flagged`; |
Oops, something went wrong.