-
Go to the documentation of this file. 1 using Microsoft.Extensions.Logging;
3 using System.Collections.Generic;
6 using System.Threading.Tasks;
23 public sealed
override bool AlphaIsActive =>
true;
26 public sealed
override Models.CompileJob ActiveCompileJob =>
Server?.Dmb.CompileJob;
65 ILogger<BasicWatchdog> logger,
67 Api.Models.Instance instance,
71 sessionControllerFactory,
74 databaseContextFactory,
79 initialLaunchParameters,
90 Logger.LogDebug(
"Server compile job ID is {0}",
Server.Dmb.CompileJob.Id);
94 return new Dictionary<MonitorActivationReason, Task>
110 string exitWord =
Server.TerminationWasRequested ?
"exited" :
"crashed";
111 if (
Server.RebootState == Session.RebootState.Shutdown)
114 await Chat.SendWatchdogMessage(
116 CultureInfo.InvariantCulture,
117 "Server {0}! Shutting down due to graceful termination request...",
121 .ConfigureAwait(
false);
126 await Chat.SendWatchdogMessage(
128 CultureInfo.InvariantCulture,
129 "Server {0}! Rebooting...",
133 .ConfigureAwait(
false);
139 var rebootState =
Server.RebootState;
140 if (gracefulRebootRequired && rebootState == Session.RebootState.Normal)
142 Logger.LogError(
"Watchdog reached normal reboot state with gracefulRebootRequired set!");
143 rebootState = Session.RebootState.
Restart;
146 gracefulRebootRequired =
false;
147 Server.ResetRebootState();
151 case Session.RebootState.Normal:
152 monitorState.
NextAction = HandleNormalReboot();
154 case Session.RebootState.Restart:
157 case Session.RebootState.Shutdown:
159 await Chat.SendWatchdogMessage(
160 "Active server rebooted! Shutting down due to graceful termination request...",
163 .ConfigureAwait(
false);
167 throw new InvalidOperationException($
"Invalid reboot state: {rebootState}");
172 await
Server.SetRebootState(Session.RebootState.Restart, cancellationToken).ConfigureAwait(
false);
173 gracefulRebootRequired =
true;
176 await HandleNewDmbAvailable(cancellationToken).ConfigureAwait(
false);
181 throw new NotSupportedException($
"Unsupported activation reason: {reason}");
184 throw new InvalidOperationException($
"Invalid activation reason: {reason}");
192 AlphaIsActive =
true,
202 gracefulRebootRequired =
false;
211 var serverToReattach = reattachInfo?.
Alpha ?? reattachInfo?.
Bravo;
212 var serverToKill = reattachInfo?.
Bravo ?? reattachInfo?.
Alpha;
215 if (serverToKill == serverToReattach)
218 if (reattachInfo?.AlphaIsActive ==
false)
220 var temp = serverToReattach;
221 serverToReattach = serverToKill;
226 var doesntNeedNewDmb = serverToReattach != null;
230 bool inactiveServerWasKilled =
false;
236 Task<ISessionController> serverLaunchTask, inactiveReattachTask;
237 if (!doesntNeedNewDmb)
239 dmbToUse = await PrepServerForLaunch(dmbToUse, cancellationToken).ConfigureAwait(
false);
243 ActiveLaunchParameters,
252 bool thereIsAnInactiveServerToKill = serverToKill != null;
253 if (thereIsAnInactiveServerToKill)
259 Server = await serverLaunchTask.ConfigureAwait(
false);
264 var inactiveServerController = await inactiveReattachTask.ConfigureAwait(
false);
265 inactiveServerController?.Dispose();
266 inactiveServerWasKilled = inactiveServerController != null;
272 await NotifyOfFailedReattach(thereIsAnInactiveServerToKill && !inactiveServerWasKilled, cancellationToken).ConfigureAwait(
false);
276 await CheckLaunchResult(Server,
"Server", cancellationToken).ConfigureAwait(
false);
283 bool serverWasActive =
Server != null;
284 DisposeAndNullControllers();
287 if (dmbToUse != null && !serverWasActive)
290 if (serverToKill != null && !inactiveServerWasKilled)
291 serverToKill.Dmb.Dispose();
302 bool dmbUpdatePending = ActiveLaunchParameters != LastLaunchParameters;
313 gracefulRebootRequired =
true;
314 return Server.SetRebootState(Session.RebootState.Restart, cancellationToken);
323 protected virtual Task<IDmbProvider> PrepServerForLaunch(
IDmbProvider dmbToUse, CancellationToken cancellationToken) => Task.FromResult(dmbToUse);
328 if (!gracefulRebootRequired)
329 return base.ResetRebootState(cancellationToken);
331 return Restart(
true, cancellationToken);
BasicWatchdog(IChatManager chat, ISessionControllerFactory sessionControllerFactory, IDmbFactory dmbFactory, IReattachInfoHandler reattachInfoHandler, IDatabaseContextFactory databaseContextFactory, IJobManager jobManager, IServerControl serverControl, IAsyncDelayer asyncDelayer, ILogger< BasicWatchdog > logger, DreamDaemonLaunchParameters initialLaunchParameters, Api.Models.Instance instance, bool autoStart)
Initializes a new instance of the BasicWatchdog .
+
Go to the documentation of this file. 1 using Microsoft.Extensions.Logging;
3 using System.Collections.Generic;
6 using System.Threading.Tasks;
23 public sealed
override bool AlphaIsActive =>
true;
26 public sealed
override Models.CompileJob ActiveCompileJob =>
Server?.Dmb.CompileJob;
65 ILogger<BasicWatchdog> logger,
67 Api.Models.Instance instance,
71 sessionControllerFactory,
74 databaseContextFactory,
79 initialLaunchParameters,
92 return new Dictionary<MonitorActivationReason, Task>
108 string exitWord =
Server.TerminationWasRequested ?
"exited" :
"crashed";
109 if (
Server.RebootState == Session.RebootState.Shutdown)
112 await Chat.SendWatchdogMessage(
114 CultureInfo.InvariantCulture,
115 "Server {0}! Shutting down due to graceful termination request...",
119 .ConfigureAwait(
false);
124 await Chat.SendWatchdogMessage(
126 CultureInfo.InvariantCulture,
127 "Server {0}! Rebooting...",
131 .ConfigureAwait(
false);
137 var rebootState =
Server.RebootState;
138 if (gracefulRebootRequired && rebootState == Session.RebootState.Normal)
140 Logger.LogError(
"Watchdog reached normal reboot state with gracefulRebootRequired set!");
141 rebootState = Session.RebootState.
Restart;
144 gracefulRebootRequired =
false;
145 Server.ResetRebootState();
149 case Session.RebootState.Normal:
150 monitorState.
NextAction = HandleNormalReboot();
152 case Session.RebootState.Restart:
155 case Session.RebootState.Shutdown:
157 await Chat.SendWatchdogMessage(
158 "Active server rebooted! Shutting down due to graceful termination request...",
161 .ConfigureAwait(
false);
165 throw new InvalidOperationException($
"Invalid reboot state: {rebootState}");
170 await
Server.SetRebootState(Session.RebootState.Restart, cancellationToken).ConfigureAwait(
false);
171 gracefulRebootRequired =
true;
174 await HandleNewDmbAvailable(cancellationToken).ConfigureAwait(
false);
179 throw new NotSupportedException($
"Unsupported activation reason: {reason}");
182 throw new InvalidOperationException($
"Invalid activation reason: {reason}");
190 AlphaIsActive =
true,
200 gracefulRebootRequired =
false;
209 var serverToReattach = reattachInfo?.
Alpha ?? reattachInfo?.
Bravo;
210 var serverToKill = reattachInfo?.
Bravo ?? reattachInfo?.
Alpha;
213 if (serverToKill == serverToReattach)
216 if (reattachInfo?.AlphaIsActive ==
false)
218 var temp = serverToReattach;
219 serverToReattach = serverToKill;
224 var doesntNeedNewDmb = serverToReattach != null;
228 bool inactiveServerWasKilled =
false;
234 Task<ISessionController> serverLaunchTask, inactiveReattachTask;
235 if (!doesntNeedNewDmb)
237 dmbToUse = await PrepServerForLaunch(dmbToUse, cancellationToken).ConfigureAwait(
false);
241 ActiveLaunchParameters,
250 bool thereIsAnInactiveServerToKill = serverToKill != null;
251 if (thereIsAnInactiveServerToKill)
257 Server = await serverLaunchTask.ConfigureAwait(
false);
262 var inactiveServerController = await inactiveReattachTask.ConfigureAwait(
false);
263 inactiveServerController?.Dispose();
264 inactiveServerWasKilled = inactiveServerController != null;
270 await NotifyOfFailedReattach(thereIsAnInactiveServerToKill && !inactiveServerWasKilled, cancellationToken).ConfigureAwait(
false);
274 await CheckLaunchResult(Server,
"Server", cancellationToken).ConfigureAwait(
false);
281 bool serverWasActive =
Server != null;
282 DisposeAndNullControllers();
285 if (dmbToUse != null && !serverWasActive)
288 if (serverToKill != null && !inactiveServerWasKilled)
289 serverToKill.Dmb.Dispose();
300 bool dmbUpdatePending = ActiveLaunchParameters != LastLaunchParameters;
311 gracefulRebootRequired =
true;
312 return Server.SetRebootState(Session.RebootState.Restart, cancellationToken);
321 protected virtual Task<IDmbProvider> PrepServerForLaunch(
IDmbProvider dmbToUse, CancellationToken cancellationToken) => Task.FromResult(dmbToUse);
326 if (!gracefulRebootRequired)
327 return base.ResetRebootState(cancellationToken);
329 return Restart(
true, cancellationToken);
BasicWatchdog(IChatManager chat, ISessionControllerFactory sessionControllerFactory, IDmbFactory dmbFactory, IReattachInfoHandler reattachInfoHandler, IDatabaseContextFactory databaseContextFactory, IJobManager jobManager, IServerControl serverControl, IAsyncDelayer asyncDelayer, ILogger< BasicWatchdog > logger, DreamDaemonLaunchParameters initialLaunchParameters, Api.Models.Instance instance, bool autoStart)
Initializes a new instance of the BasicWatchdog .
async Task< ISessionController > Reattach(ReattachInformation reattachInformation, CancellationToken cancellationToken)
Create a ISessionController from an existing DreamDaemon instance
void EnableCustomChatCommands()
Enables the reading of custom chat commands from the ISessionController
@@ -107,10 +107,10 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
Factory for scoping usage of IDatabaseContexts. Meant for use by Components
-
virtual Task HandleNewDmbAvailable(CancellationToken cancellationToken)
Handler for MonitorActivationReason.NewDmbAvailable.
+
virtual Task HandleNewDmbAvailable(CancellationToken cancellationToken)
Handler for MonitorActivationReason.NewDmbAvailable.
Launch settings for DreamDaemon
-
virtual MonitorAction HandleNormalReboot()
Handler for MonitorActivationReason.ActiveServerRebooted when the RebootState is RebootState.Normal.
+
virtual MonitorAction HandleNormalReboot()
Handler for MonitorActivationReason.ActiveServerRebooted when the RebootState is RebootState.Normal.
For waiting asynchronously
@@ -124,7 +124,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
ISessionController ActiveServer
The active ISessionController
Factory for IDmbProviders
-
override async Task HandleMonitorWakeup(MonitorActivationReason reason, MonitorState monitorState, CancellationToken cancellationToken)
Handles the actions to take when the monitor has to "wake up"
+
override async Task HandleMonitorWakeup(MonitorActivationReason reason, MonitorState monitorState, CancellationToken cancellationToken)
Handles the actions to take when the monitor has to "wake up"
Task Restart()
Restarts the Host
void SetHighPriority()
Set's the owned global::System.Diagnostics.Process.PriorityClass to global::System.Diagnostics.ProcessPriorityClass.AboveNormal
override IReadOnlyDictionary< MonitorActivationReason, Task > GetMonitoredServerTasks(MonitorState monitorState)
Gets the tasks for the following MonitorActivationReasons: MonitorActivationReason.ActiveServerCrashed, MonitorActivationReason.ActiveServerRebooted, MonitorActivationReason.InactiveServerCrashed, MonitorActivationReason.InactiveServerRebooted, MonitorActivationReason.InactiveServerStartupComplete.
@@ -136,9 +136,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
Provides absolute paths to the latest compiled .dmbs
Handles saving and loading DualReattachInformation
-
sealed override async Task InitControllers(Action callBeforeRecurse, Task chatTask, DualReattachInformation reattachInfo, CancellationToken cancellationToken)
Starts all ISessionControllers.
+
sealed override async Task InitControllers(Action callBeforeRecurse, Task chatTask, DualReattachInformation reattachInfo, CancellationToken cancellationToken)
Starts all ISessionControllers.
MonitorAction
The action for the monitor loop to take when control is returned to it
-
override Task ResetRebootState(CancellationToken cancellationToken)
Cancels pending graceful actions
+
override Task ResetRebootState(CancellationToken cancellationToken)
Cancels pending graceful actions
IDmbProvider LockNextDmb(int lockCount)
Gets the next IDmbProvider
The (absolute) state of the ExperimentalWatchdog
@@ -146,7 +146,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
-
override void DisposeAndNullControllers()
Call IDisposable.Dispose and null the fields for all ISessionControllers and set Running to ...
+
override void DisposeAndNullControllers()
Call IDisposable.Dispose and null the fields for all ISessionControllers and set Running to ...
Represents a service that may take an updated Host assembly and run it, stopping the current assembly...
diff --git a/_bool_converter_8cs.html b/_bool_converter_8cs.html
index 2d85d1994a..46010dbd16 100644
--- a/_bool_converter_8cs.html
+++ b/_bool_converter_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_bool_converter_8cs_source.html b/_bool_converter_8cs_source.html
index bbb72786cc..1bce88164d 100644
--- a/_bool_converter_8cs_source.html
+++ b/_bool_converter_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_bridge_command_type_8cs.html b/_bridge_command_type_8cs.html
index 8013afd5f5..997669ae22 100644
--- a/_bridge_command_type_8cs.html
+++ b/_bridge_command_type_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_bridge_command_type_8cs_source.html b/_bridge_command_type_8cs_source.html
index f5045408cf..8f44e758d5 100644
--- a/_bridge_command_type_8cs_source.html
+++ b/_bridge_command_type_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_bridge_controller_8cs.html b/_bridge_controller_8cs.html
index 5b73f7c62f..7d65fe3866 100644
--- a/_bridge_controller_8cs.html
+++ b/_bridge_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_bridge_controller_8cs_source.html b/_bridge_controller_8cs_source.html
index ac8588a9f5..1c5d4e58b8 100644
--- a/_bridge_controller_8cs_source.html
+++ b/_bridge_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_bridge_parameters_8cs.html b/_bridge_parameters_8cs.html
index 07380406ee..982b486a8e 100644
--- a/_bridge_parameters_8cs.html
+++ b/_bridge_parameters_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_bridge_parameters_8cs_source.html b/_bridge_parameters_8cs_source.html
index 152eab1782..f22e0ab7d2 100644
--- a/_bridge_parameters_8cs_source.html
+++ b/_bridge_parameters_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_bridge_registration_8cs.html b/_bridge_registration_8cs.html
index 14d76fa844..7bf5e8ac2b 100644
--- a/_bridge_registration_8cs.html
+++ b/_bridge_registration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_bridge_registration_8cs_source.html b/_bridge_registration_8cs_source.html
index a2cef84979..9e9131d6b8 100644
--- a/_bridge_registration_8cs_source.html
+++ b/_bridge_registration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_bridge_response_8cs.html b/_bridge_response_8cs.html
index b1552833f7..1a6656ab1e 100644
--- a/_bridge_response_8cs.html
+++ b/_bridge_response_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_bridge_response_8cs_source.html b/_bridge_response_8cs_source.html
index ad7c05a53e..088adb26fa 100644
--- a/_bridge_response_8cs_source.html
+++ b/_bridge_response_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_8cs.html b/_byond_8cs.html
index a13bb12587..3a26dbec6d 100644
--- a/_byond_8cs.html
+++ b/_byond_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_8cs_source.html b/_byond_8cs_source.html
index 44e32ddec5..5079403a65 100644
--- a/_byond_8cs_source.html
+++ b/_byond_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_client_8cs.html b/_byond_client_8cs.html
index 03e01b51d9..e1fd279503 100644
--- a/_byond_client_8cs.html
+++ b/_byond_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_client_8cs_source.html b/_byond_client_8cs_source.html
index ccbb33759f..55a1b3177b 100644
--- a/_byond_client_8cs_source.html
+++ b/_byond_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_command_8cs.html b/_byond_command_8cs.html
index ab8569a9c8..9e09ede1b3 100644
--- a/_byond_command_8cs.html
+++ b/_byond_command_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_command_8cs_source.html b/_byond_command_8cs_source.html
index 834319a59c..362848b771 100644
--- a/_byond_command_8cs_source.html
+++ b/_byond_command_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_controller_8cs.html b/_byond_controller_8cs.html
index 14635326b2..c05cbffe6b 100644
--- a/_byond_controller_8cs.html
+++ b/_byond_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_controller_8cs_source.html b/_byond_controller_8cs_source.html
index b084b00451..1edfd77b6b 100644
--- a/_byond_controller_8cs_source.html
+++ b/_byond_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_executable_lock_8cs.html b/_byond_executable_lock_8cs.html
index 3549adda3b..d6cfbb08b4 100644
--- a/_byond_executable_lock_8cs.html
+++ b/_byond_executable_lock_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_executable_lock_8cs_source.html b/_byond_executable_lock_8cs_source.html
index 76b72ce101..0b1264d773 100644
--- a/_byond_executable_lock_8cs_source.html
+++ b/_byond_executable_lock_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_installer_base_8cs.html b/_byond_installer_base_8cs.html
index 911e637433..2920e48530 100644
--- a/_byond_installer_base_8cs.html
+++ b/_byond_installer_base_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_installer_base_8cs_source.html b/_byond_installer_base_8cs_source.html
index 5666f503b5..8250f1ab6b 100644
--- a/_byond_installer_base_8cs_source.html
+++ b/_byond_installer_base_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_manager_8cs.html b/_byond_manager_8cs.html
index 8f26c3455c..66464b3e01 100644
--- a/_byond_manager_8cs.html
+++ b/_byond_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_manager_8cs_source.html b/_byond_manager_8cs_source.html
index 0f25509ee9..337b0a1f2d 100644
--- a/_byond_manager_8cs_source.html
+++ b/_byond_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_rights_8cs.html b/_byond_rights_8cs.html
index 5eca96765d..cfef3c9712 100644
--- a/_byond_rights_8cs.html
+++ b/_byond_rights_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_byond_rights_8cs_source.html b/_byond_rights_8cs_source.html
index 8a9243d920..dbd8cd9d9a 100644
--- a/_byond_rights_8cs_source.html
+++ b/_byond_rights_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_channel_mapping_8cs.html b/_channel_mapping_8cs.html
index e149e2c82c..67c38ac893 100644
--- a/_channel_mapping_8cs.html
+++ b/_channel_mapping_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_channel_mapping_8cs_source.html b/_channel_mapping_8cs_source.html
index 38c810295f..a5ecb4b19e 100644
--- a/_channel_mapping_8cs_source.html
+++ b/_channel_mapping_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_channel_representation_8cs.html b/_channel_representation_8cs.html
index c04f2fa715..bd394c4d1c 100644
--- a/_channel_representation_8cs.html
+++ b/_channel_representation_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_channel_representation_8cs_source.html b/_channel_representation_8cs_source.html
index dbd7eb4447..6b27e79975 100644
--- a/_channel_representation_8cs_source.html
+++ b/_channel_representation_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_bot_rights_8cs.html b/_chat_bot_rights_8cs.html
index 9e4b4ecd68..e8b715ec5f 100644
--- a/_chat_bot_rights_8cs.html
+++ b/_chat_bot_rights_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_bot_rights_8cs_source.html b/_chat_bot_rights_8cs_source.html
index 0dc0bc07ff..594293a9b9 100644
--- a/_chat_bot_rights_8cs_source.html
+++ b/_chat_bot_rights_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_bots_client_8cs.html b/_chat_bots_client_8cs.html
index 0f09ac6522..0bcac9294f 100644
--- a/_chat_bots_client_8cs.html
+++ b/_chat_bots_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_bots_client_8cs_source.html b/_chat_bots_client_8cs_source.html
index d1626e7d7c..0ccdf260ef 100644
--- a/_chat_bots_client_8cs_source.html
+++ b/_chat_bots_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_channel_extensions_8cs.html b/_chat_channel_extensions_8cs.html
index 7984371311..056c2665d4 100644
--- a/_chat_channel_extensions_8cs.html
+++ b/_chat_channel_extensions_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_channel_extensions_8cs_source.html b/_chat_channel_extensions_8cs_source.html
index 4571df7d65..c184d090ed 100644
--- a/_chat_channel_extensions_8cs_source.html
+++ b/_chat_channel_extensions_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_command_8cs.html b/_chat_command_8cs.html
index f941004ca3..66d5802e65 100644
--- a/_chat_command_8cs.html
+++ b/_chat_command_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_command_8cs_source.html b/_chat_command_8cs_source.html
index eef344d00e..78e69f9bc7 100644
--- a/_chat_command_8cs_source.html
+++ b/_chat_command_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_connection_string_builder_8cs.html b/_chat_connection_string_builder_8cs.html
index 34ed879f5e..9880b086de 100644
--- a/_chat_connection_string_builder_8cs.html
+++ b/_chat_connection_string_builder_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_connection_string_builder_8cs_source.html b/_chat_connection_string_builder_8cs_source.html
index 3bc4763e1f..60742ee14e 100644
--- a/_chat_connection_string_builder_8cs_source.html
+++ b/_chat_connection_string_builder_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_controller_8cs.html b/_chat_controller_8cs.html
index cd3014c7c2..b6d14e4801 100644
--- a/_chat_controller_8cs.html
+++ b/_chat_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_controller_8cs_source.html b/_chat_controller_8cs_source.html
index 6c9de051d8..402e1b0900 100644
--- a/_chat_controller_8cs_source.html
+++ b/_chat_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_manager_8cs.html b/_chat_manager_8cs.html
index 7b89df55fa..b334313764 100644
--- a/_chat_manager_8cs.html
+++ b/_chat_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_manager_8cs_source.html b/_chat_manager_8cs_source.html
index 195909298b..e06aa612c4 100644
--- a/_chat_manager_8cs_source.html
+++ b/_chat_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_manager_factory_8cs.html b/_chat_manager_factory_8cs.html
index b37fe77603..4b16a14d8d 100644
--- a/_chat_manager_factory_8cs.html
+++ b/_chat_manager_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_manager_factory_8cs_source.html b/_chat_manager_factory_8cs_source.html
index d806a0710d..c31cab3c40 100644
--- a/_chat_manager_factory_8cs_source.html
+++ b/_chat_manager_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_message_8cs.html b/_chat_message_8cs.html
index 3c68736b27..36216fb8a1 100644
--- a/_chat_message_8cs.html
+++ b/_chat_message_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_message_8cs_source.html b/_chat_message_8cs_source.html
index 36bd2b8fca..fb1c92f5c2 100644
--- a/_chat_message_8cs_source.html
+++ b/_chat_message_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_provider_8cs.html b/_chat_provider_8cs.html
index d6f435a46c..3e0fdeb9fb 100644
--- a/_chat_provider_8cs.html
+++ b/_chat_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_provider_8cs_source.html b/_chat_provider_8cs_source.html
index be40bc8a1f..4e1560f276 100644
--- a/_chat_provider_8cs_source.html
+++ b/_chat_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_tracking_context_8cs.html b/_chat_tracking_context_8cs.html
index 238b8e7c8e..18d270cb95 100644
--- a/_chat_tracking_context_8cs.html
+++ b/_chat_tracking_context_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_tracking_context_8cs_source.html b/_chat_tracking_context_8cs_source.html
index cf78e97125..bf66f39245 100644
--- a/_chat_tracking_context_8cs_source.html
+++ b/_chat_tracking_context_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_update_8cs.html b/_chat_update_8cs.html
index d00bc47210..f44621b87d 100644
--- a/_chat_update_8cs.html
+++ b/_chat_update_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_update_8cs_source.html b/_chat_update_8cs_source.html
index 9df315c4e8..3e7b239edb 100644
--- a/_chat_update_8cs_source.html
+++ b/_chat_update_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_user_8cs.html b/_chat_user_8cs.html
index 90e981d59e..c457d97af4 100644
--- a/_chat_user_8cs.html
+++ b/_chat_user_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_chat_user_8cs_source.html b/_chat_user_8cs_source.html
index 53f8727484..429a25f3a6 100644
--- a/_chat_user_8cs_source.html
+++ b/_chat_user_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_claims_injector_8cs.html b/_claims_injector_8cs.html
index ad4f27ff79..23f1ce1ffe 100644
--- a/_claims_injector_8cs.html
+++ b/_claims_injector_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_claims_injector_8cs_source.html b/_claims_injector_8cs_source.html
index 9e7baf6b75..bc91613cea 100644
--- a/_claims_injector_8cs_source.html
+++ b/_claims_injector_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_client_exception_8cs.html b/_client_exception_8cs.html
index 57c7771c76..e5b66d924c 100644
--- a/_client_exception_8cs.html
+++ b/_client_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_client_exception_8cs_source.html b/_client_exception_8cs_source.html
index 7680a7b208..189284f875 100644
--- a/_client_exception_8cs_source.html
+++ b/_client_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_combined_topic_response_8cs.html b/_combined_topic_response_8cs.html
index fff78b4d3f..4f02fef016 100644
--- a/_combined_topic_response_8cs.html
+++ b/_combined_topic_response_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_combined_topic_response_8cs_source.html b/_combined_topic_response_8cs_source.html
index 03b4a407d6..c4a9adab3c 100644
--- a/_combined_topic_response_8cs_source.html
+++ b/_combined_topic_response_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_command_factory_8cs.html b/_command_factory_8cs.html
index 4a0b9a8679..3394f237a9 100644
--- a/_command_factory_8cs.html
+++ b/_command_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_command_factory_8cs_source.html b/_command_factory_8cs_source.html
index 8b2e516445..0606f92b95 100644
--- a/_command_factory_8cs_source.html
+++ b/_command_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_components_2_session_2_dual_reattach_information_8cs.html b/_components_2_session_2_dual_reattach_information_8cs.html
index 729d471eb4..0593c9b4af 100644
--- a/_components_2_session_2_dual_reattach_information_8cs.html
+++ b/_components_2_session_2_dual_reattach_information_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_components_2_session_2_dual_reattach_information_8cs_source.html b/_components_2_session_2_dual_reattach_information_8cs_source.html
index 2f34bbc6cc..fa169b2e9d 100644
--- a/_components_2_session_2_dual_reattach_information_8cs_source.html
+++ b/_components_2_session_2_dual_reattach_information_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_components_2_session_2_reattach_information_8cs.html b/_components_2_session_2_reattach_information_8cs.html
index fcbdc291ae..b6767d7d48 100644
--- a/_components_2_session_2_reattach_information_8cs.html
+++ b/_components_2_session_2_reattach_information_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_components_2_session_2_reattach_information_8cs_source.html b/_components_2_session_2_reattach_information_8cs_source.html
index 214c83128b..a437b91e10 100644
--- a/_components_2_session_2_reattach_information_8cs_source.html
+++ b/_components_2_session_2_reattach_information_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_components_2_watchdog_2_i_watchdog_8cs.html b/_components_2_watchdog_2_i_watchdog_8cs.html
index a7c0361053..05e1f398db 100644
--- a/_components_2_watchdog_2_i_watchdog_8cs.html
+++ b/_components_2_watchdog_2_i_watchdog_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_components_2_watchdog_2_i_watchdog_8cs_source.html b/_components_2_watchdog_2_i_watchdog_8cs_source.html
index 7188f61bee..2955646e8e 100644
--- a/_components_2_watchdog_2_i_watchdog_8cs_source.html
+++ b/_components_2_watchdog_2_i_watchdog_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_components_2_watchdog_2_i_watchdog_factory_8cs.html b/_components_2_watchdog_2_i_watchdog_factory_8cs.html
index 5bbd4180dc..659c096257 100644
--- a/_components_2_watchdog_2_i_watchdog_factory_8cs.html
+++ b/_components_2_watchdog_2_i_watchdog_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_components_2_watchdog_2_i_watchdog_factory_8cs_source.html b/_components_2_watchdog_2_i_watchdog_factory_8cs_source.html
index 1a5b429c55..b932f03aca 100644
--- a/_components_2_watchdog_2_i_watchdog_factory_8cs_source.html
+++ b/_components_2_watchdog_2_i_watchdog_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_components_2_watchdog_2_watchdog_factory_8cs.html b/_components_2_watchdog_2_watchdog_factory_8cs.html
index 0b95b67436..353f20b87f 100644
--- a/_components_2_watchdog_2_watchdog_factory_8cs.html
+++ b/_components_2_watchdog_2_watchdog_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_components_2_watchdog_2_watchdog_factory_8cs_source.html b/_components_2_watchdog_2_watchdog_factory_8cs_source.html
index 1e9fad6452..0f163c1ed5 100644
--- a/_components_2_watchdog_2_watchdog_factory_8cs_source.html
+++ b/_components_2_watchdog_2_watchdog_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_configuration_8cs.html b/_configuration_8cs.html
index f0ba060ca1..9b808bc1f5 100644
--- a/_configuration_8cs.html
+++ b/_configuration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_configuration_8cs_source.html b/_configuration_8cs_source.html
index 9e7367b7dc..1135879e33 100644
--- a/_configuration_8cs_source.html
+++ b/_configuration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_configuration_client_8cs.html b/_configuration_client_8cs.html
index 917bea9dbf..b620393eef 100644
--- a/_configuration_client_8cs.html
+++ b/_configuration_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_configuration_client_8cs_source.html b/_configuration_client_8cs_source.html
index f4b1846862..38abf0b80c 100644
--- a/_configuration_client_8cs_source.html
+++ b/_configuration_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_configuration_controller_8cs.html b/_configuration_controller_8cs.html
index e81c920a35..dbb93e5ec1 100644
--- a/_configuration_controller_8cs.html
+++ b/_configuration_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_configuration_controller_8cs_source.html b/_configuration_controller_8cs_source.html
index ce44cb3bf8..454f005b9a 100644
--- a/_configuration_controller_8cs_source.html
+++ b/_configuration_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_configuration_file_8cs.html b/_configuration_file_8cs.html
index 17007743f8..ea2a6ec598 100644
--- a/_configuration_file_8cs.html
+++ b/_configuration_file_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_configuration_file_8cs_source.html b/_configuration_file_8cs_source.html
index ecbf20935d..70d8c397eb 100644
--- a/_configuration_file_8cs_source.html
+++ b/_configuration_file_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_configuration_rights_8cs.html b/_configuration_rights_8cs.html
index 523747a949..c65b4a249e 100644
--- a/_configuration_rights_8cs.html
+++ b/_configuration_rights_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_configuration_rights_8cs_source.html b/_configuration_rights_8cs_source.html
index e41ba89f6b..af22f90c5f 100644
--- a/_configuration_rights_8cs_source.html
+++ b/_configuration_rights_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_configuration_type_8cs.html b/_configuration_type_8cs.html
index a9e7e55043..da1814d895 100644
--- a/_configuration_type_8cs.html
+++ b/_configuration_type_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_configuration_type_8cs_source.html b/_configuration_type_8cs_source.html
index e05f474c59..0c7aea0e77 100644
--- a/_configuration_type_8cs_source.html
+++ b/_configuration_type_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_conflict_exception_8cs.html b/_conflict_exception_8cs.html
index 5ef3b08b0d..e0a34c1b9d 100644
--- a/_conflict_exception_8cs.html
+++ b/_conflict_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_conflict_exception_8cs_source.html b/_conflict_exception_8cs_source.html
index 94cb7236e4..281d977a06 100644
--- a/_conflict_exception_8cs_source.html
+++ b/_conflict_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_console_2_program_8cs.html b/_console_2_program_8cs.html
index a9d9cad9b1..f1644959bd 100644
--- a/_console_2_program_8cs.html
+++ b/_console_2_program_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_console_2_program_8cs_source.html b/_console_2_program_8cs_source.html
index 084c20d67e..425d37d396 100644
--- a/_console_2_program_8cs_source.html
+++ b/_console_2_program_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_console_8cs.html b/_console_8cs.html
index 138726d591..9913c919bd 100644
--- a/_console_8cs.html
+++ b/_console_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_console_8cs_source.html b/_console_8cs_source.html
index 95769ba092..09d8c29b97 100644
--- a/_console_8cs_source.html
+++ b/_console_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_control_panel_configuration_8cs.html b/_control_panel_configuration_8cs.html
index 0eca938e44..28461d4dcf 100644
--- a/_control_panel_configuration_8cs.html
+++ b/_control_panel_configuration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_control_panel_configuration_8cs_source.html b/_control_panel_configuration_8cs_source.html
index 8492282e1e..832ca95fe6 100644
--- a/_control_panel_configuration_8cs_source.html
+++ b/_control_panel_configuration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_cryptography_suite_8cs.html b/_cryptography_suite_8cs.html
index 2a90422de7..46cdfb19dd 100644
--- a/_cryptography_suite_8cs.html
+++ b/_cryptography_suite_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_cryptography_suite_8cs_source.html b/_cryptography_suite_8cs_source.html
index ce83097154..df08add9c6 100644
--- a/_cryptography_suite_8cs_source.html
+++ b/_cryptography_suite_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_custom_command_8cs.html b/_custom_command_8cs.html
index 2c238d5ca1..c423227ad7 100644
--- a/_custom_command_8cs.html
+++ b/_custom_command_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_custom_command_8cs_source.html b/_custom_command_8cs_source.html
index 21a3708946..dbde1fdc9e 100644
--- a/_custom_command_8cs_source.html
+++ b/_custom_command_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_d_m_api_constants_8cs.html b/_d_m_api_constants_8cs.html
index 8bc8f137cf..9e28cea2f6 100644
--- a/_d_m_api_constants_8cs.html
+++ b/_d_m_api_constants_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_d_m_api_constants_8cs_source.html b/_d_m_api_constants_8cs_source.html
index e5233f5c6f..eabb806be6 100644
--- a/_d_m_api_constants_8cs_source.html
+++ b/_d_m_api_constants_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_d_m_api_parameters_8cs.html b/_d_m_api_parameters_8cs.html
index cfd30bc363..916dbd8faa 100644
--- a/_d_m_api_parameters_8cs.html
+++ b/_d_m_api_parameters_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_d_m_api_parameters_8cs_source.html b/_d_m_api_parameters_8cs_source.html
index b0573368e9..52d918eab9 100644
--- a/_d_m_api_parameters_8cs_source.html
+++ b/_d_m_api_parameters_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_d_m_api_response_8cs.html b/_d_m_api_response_8cs.html
index ef2efb36a6..3d0938ab36 100644
--- a/_d_m_api_response_8cs.html
+++ b/_d_m_api_response_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_d_m_api_response_8cs_source.html b/_d_m_api_response_8cs_source.html
index 9c2aa8ff90..8b4cd0192b 100644
--- a/_d_m_api_response_8cs_source.html
+++ b/_d_m_api_response_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_collection_8cs.html b/_database_collection_8cs.html
index 024f89228b..eeda6831ad 100644
--- a/_database_collection_8cs.html
+++ b/_database_collection_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_collection_8cs_source.html b/_database_collection_8cs_source.html
index 305f9f51f4..3fcbbec69a 100644
--- a/_database_collection_8cs_source.html
+++ b/_database_collection_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_configuration_8cs.html b/_database_configuration_8cs.html
index 8221214c4f..bff0f1b0f4 100644
--- a/_database_configuration_8cs.html
+++ b/_database_configuration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_configuration_8cs_source.html b/_database_configuration_8cs_source.html
index 7ffbcea5fa..a1e03284fa 100644
--- a/_database_configuration_8cs_source.html
+++ b/_database_configuration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_connection_factory_8cs.html b/_database_connection_factory_8cs.html
index fd27f6e8bf..be3182531d 100644
--- a/_database_connection_factory_8cs.html
+++ b/_database_connection_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_connection_factory_8cs_source.html b/_database_connection_factory_8cs_source.html
index 179690e2e9..8a7eba7335 100644
--- a/_database_connection_factory_8cs_source.html
+++ b/_database_connection_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_context_8cs.html b/_database_context_8cs.html
index ab9441af7f..5bbde95d00 100644
--- a/_database_context_8cs.html
+++ b/_database_context_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_context_8cs_source.html b/_database_context_8cs_source.html
index 81bbd8c3ea..23562663c0 100644
--- a/_database_context_8cs_source.html
+++ b/_database_context_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_context_extensions_8cs.html b/_database_context_extensions_8cs.html
index 57be74c10e..3fe2e141cf 100644
--- a/_database_context_extensions_8cs.html
+++ b/_database_context_extensions_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_context_extensions_8cs_source.html b/_database_context_extensions_8cs_source.html
index 744c24f0ef..38e6b0e73f 100644
--- a/_database_context_extensions_8cs_source.html
+++ b/_database_context_extensions_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_context_factory_8cs.html b/_database_context_factory_8cs.html
index 0e1de8771e..6ee5a84d0d 100644
--- a/_database_context_factory_8cs.html
+++ b/_database_context_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_context_factory_8cs_source.html b/_database_context_factory_8cs_source.html
index faade4a536..f44eecd4dc 100644
--- a/_database_context_factory_8cs_source.html
+++ b/_database_context_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_seeder_8cs.html b/_database_seeder_8cs.html
index 564e34b45e..6d7bca0ba9 100644
--- a/_database_seeder_8cs.html
+++ b/_database_seeder_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_seeder_8cs_source.html b/_database_seeder_8cs_source.html
index c3242e3feb..8c1bcaf592 100644
--- a/_database_seeder_8cs_source.html
+++ b/_database_seeder_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_type_8cs.html b/_database_type_8cs.html
index f1e4519d43..a7ac1f51c9 100644
--- a/_database_type_8cs.html
+++ b/_database_type_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_database_type_8cs_source.html b/_database_type_8cs_source.html
index 80c3b790eb..95e9a2ff99 100644
--- a/_database_type_8cs_source.html
+++ b/_database_type_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dead_session_controller_8cs.html b/_dead_session_controller_8cs.html
index 1cca054963..e1d75285c2 100644
--- a/_dead_session_controller_8cs.html
+++ b/_dead_session_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dead_session_controller_8cs_source.html b/_dead_session_controller_8cs_source.html
index 43c360e3eb..6e6217bb47 100644
--- a/_dead_session_controller_8cs_source.html
+++ b/_dead_session_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_default_i_o_manager_8cs.html b/_default_i_o_manager_8cs.html
index ec34d6d2c3..020622c3db 100644
--- a/_default_i_o_manager_8cs.html
+++ b/_default_i_o_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_default_i_o_manager_8cs_source.html b/_default_i_o_manager_8cs_source.html
index 5aac6c6a95..2a1dea78e5 100644
--- a/_default_i_o_manager_8cs_source.html
+++ b/_default_i_o_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_design_time_db_context_factory_helpers_8cs.html b/_design_time_db_context_factory_helpers_8cs.html
index 938353e94e..2f4f74e292 100644
--- a/_design_time_db_context_factory_helpers_8cs.html
+++ b/_design_time_db_context_factory_helpers_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_design_time_db_context_factory_helpers_8cs_source.html b/_design_time_db_context_factory_helpers_8cs_source.html
index cedaae7b9b..9d1684e74a 100644
--- a/_design_time_db_context_factory_helpers_8cs_source.html
+++ b/_design_time_db_context_factory_helpers_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_discord_connection_string_builder_8cs.html b/_discord_connection_string_builder_8cs.html
index 7f96817044..fefb2a8151 100644
--- a/_discord_connection_string_builder_8cs.html
+++ b/_discord_connection_string_builder_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_discord_connection_string_builder_8cs_source.html b/_discord_connection_string_builder_8cs_source.html
index 014a20b730..71ec9e0051 100644
--- a/_discord_connection_string_builder_8cs_source.html
+++ b/_discord_connection_string_builder_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_discord_provider_8cs.html b/_discord_provider_8cs.html
index ec449dccf4..7851f2f810 100644
--- a/_discord_provider_8cs.html
+++ b/_discord_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_discord_provider_8cs_source.html b/_discord_provider_8cs_source.html
index 5fba2ec9da..a5e7d18231 100644
--- a/_discord_provider_8cs_source.html
+++ b/_discord_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dmb_factory_8cs.html b/_dmb_factory_8cs.html
index 901ea74562..2d14099319 100644
--- a/_dmb_factory_8cs.html
+++ b/_dmb_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dmb_factory_8cs_source.html b/_dmb_factory_8cs_source.html
index 9a5488c938..ed3501812b 100644
--- a/_dmb_factory_8cs_source.html
+++ b/_dmb_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dmb_provider_8cs.html b/_dmb_provider_8cs.html
index 7e012abeb1..9716cb3c3b 100644
--- a/_dmb_provider_8cs.html
+++ b/_dmb_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dmb_provider_8cs_source.html b/_dmb_provider_8cs_source.html
index 39d434a33b..7ac4ef2343 100644
--- a/_dmb_provider_8cs_source.html
+++ b/_dmb_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_8cs.html b/_dream_daemon_8cs.html
index 209b4462e5..32b2c99b5f 100644
--- a/_dream_daemon_8cs.html
+++ b/_dream_daemon_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_8cs_source.html b/_dream_daemon_8cs_source.html
index c6e8e74c01..a62b927ef6 100644
--- a/_dream_daemon_8cs_source.html
+++ b/_dream_daemon_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_client_8cs.html b/_dream_daemon_client_8cs.html
index 860989c004..ff06c3e746 100644
--- a/_dream_daemon_client_8cs.html
+++ b/_dream_daemon_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_client_8cs_source.html b/_dream_daemon_client_8cs_source.html
index c51ed7d3b6..85cd1a1af4 100644
--- a/_dream_daemon_client_8cs_source.html
+++ b/_dream_daemon_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_controller_8cs.html b/_dream_daemon_controller_8cs.html
index 125e8a59fa..78f735053d 100644
--- a/_dream_daemon_controller_8cs.html
+++ b/_dream_daemon_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_controller_8cs_source.html b/_dream_daemon_controller_8cs_source.html
index 7a038b8ff5..2246c10163 100644
--- a/_dream_daemon_controller_8cs_source.html
+++ b/_dream_daemon_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_launch_parameters_8cs.html b/_dream_daemon_launch_parameters_8cs.html
index 0b4d2d36b5..43b86ece82 100644
--- a/_dream_daemon_launch_parameters_8cs.html
+++ b/_dream_daemon_launch_parameters_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_launch_parameters_8cs_source.html b/_dream_daemon_launch_parameters_8cs_source.html
index 1d483f4bda..89a846fd86 100644
--- a/_dream_daemon_launch_parameters_8cs_source.html
+++ b/_dream_daemon_launch_parameters_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_rights_8cs.html b/_dream_daemon_rights_8cs.html
index 1de6d0051a..ac1aeb9487 100644
--- a/_dream_daemon_rights_8cs.html
+++ b/_dream_daemon_rights_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_rights_8cs_source.html b/_dream_daemon_rights_8cs_source.html
index 1855e30bbf..75e6e1aad5 100644
--- a/_dream_daemon_rights_8cs_source.html
+++ b/_dream_daemon_rights_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_security_8cs.html b/_dream_daemon_security_8cs.html
index 4750b81a6e..0c84328009 100644
--- a/_dream_daemon_security_8cs.html
+++ b/_dream_daemon_security_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_security_8cs_source.html b/_dream_daemon_security_8cs_source.html
index 723796e2a6..15ac23dddd 100644
--- a/_dream_daemon_security_8cs_source.html
+++ b/_dream_daemon_security_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_maker_client_8cs.html b/_dream_maker_client_8cs.html
index 36990aee74..aa2158d77a 100644
--- a/_dream_maker_client_8cs.html
+++ b/_dream_maker_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_maker_client_8cs_source.html b/_dream_maker_client_8cs_source.html
index 71e9e003dc..86cec055ce 100644
--- a/_dream_maker_client_8cs_source.html
+++ b/_dream_maker_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_maker_controller_8cs.html b/_dream_maker_controller_8cs.html
index e5064f30b3..9345ea88ae 100644
--- a/_dream_maker_controller_8cs.html
+++ b/_dream_maker_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_maker_controller_8cs_source.html b/_dream_maker_controller_8cs_source.html
index e82d2bb240..f82b0ce5e6 100644
--- a/_dream_maker_controller_8cs_source.html
+++ b/_dream_maker_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_maker_rights_8cs.html b/_dream_maker_rights_8cs.html
index fbe102000f..b9f6bf8be6 100644
--- a/_dream_maker_rights_8cs.html
+++ b/_dream_maker_rights_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_maker_rights_8cs_source.html b/_dream_maker_rights_8cs_source.html
index ef0b3ea943..1ef731e756 100644
--- a/_dream_maker_rights_8cs_source.html
+++ b/_dream_maker_rights_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_maker_settings_8cs.html b/_dream_maker_settings_8cs.html
index 4359ea98e7..6dfc2a63c4 100644
--- a/_dream_maker_settings_8cs.html
+++ b/_dream_maker_settings_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dream_maker_settings_8cs_source.html b/_dream_maker_settings_8cs_source.html
index abef5e1bff..0c24106bb4 100644
--- a/_dream_maker_settings_8cs_source.html
+++ b/_dream_maker_settings_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dual_reattach_information_base_8cs.html b/_dual_reattach_information_base_8cs.html
index b5267357e1..a068985696 100644
--- a/_dual_reattach_information_base_8cs.html
+++ b/_dual_reattach_information_base_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_dual_reattach_information_base_8cs_source.html b/_dual_reattach_information_base_8cs_source.html
index 2f94e6a89e..7460084692 100644
--- a/_dual_reattach_information_base_8cs_source.html
+++ b/_dual_reattach_information_base_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_entity_id_8cs.html b/_entity_id_8cs.html
index 65f4692dae..8ff9846b47 100644
--- a/_entity_id_8cs.html
+++ b/_entity_id_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_entity_id_8cs_source.html b/_entity_id_8cs_source.html
index 4a0cc0a944..efa79b1b42 100644
--- a/_entity_id_8cs_source.html
+++ b/_entity_id_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_error_code_8cs.html b/_error_code_8cs.html
index 8b639c0f83..9a0de9c875 100644
--- a/_error_code_8cs.html
+++ b/_error_code_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_error_code_8cs_source.html b/_error_code_8cs_source.html
index db00373b5c..0233645386 100644
--- a/_error_code_8cs_source.html
+++ b/_error_code_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_error_code_extensions_8cs.html b/_error_code_extensions_8cs.html
index f29192ecea..833e97f479 100644
--- a/_error_code_extensions_8cs.html
+++ b/_error_code_extensions_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_error_code_extensions_8cs_source.html b/_error_code_extensions_8cs_source.html
index 8706cdb96a..4aaf756fb7 100644
--- a/_error_code_extensions_8cs_source.html
+++ b/_error_code_extensions_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_error_message_8cs.html b/_error_message_8cs.html
index eee08b3224..d9cf5ce27c 100644
--- a/_error_message_8cs.html
+++ b/_error_message_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_error_message_8cs_source.html b/_error_message_8cs_source.html
index 6a54370ae0..044d430992 100644
--- a/_error_message_8cs_source.html
+++ b/_error_message_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_event_consumer_8cs.html b/_event_consumer_8cs.html
index 3a381f2c4e..25c321390b 100644
--- a/_event_consumer_8cs.html
+++ b/_event_consumer_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_event_consumer_8cs_source.html b/_event_consumer_8cs_source.html
index d4afa30731..db2f107847 100644
--- a/_event_consumer_8cs_source.html
+++ b/_event_consumer_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_event_notification_8cs.html b/_event_notification_8cs.html
index f6a7856957..b6f58d203c 100644
--- a/_event_notification_8cs.html
+++ b/_event_notification_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_event_notification_8cs_source.html b/_event_notification_8cs_source.html
index 940869d62a..a1cff5d167 100644
--- a/_event_notification_8cs_source.html
+++ b/_event_notification_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_event_type_8cs.html b/_event_type_8cs.html
index 5f55f5d46b..54aa578c25 100644
--- a/_event_type_8cs.html
+++ b/_event_type_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_event_type_8cs_source.html b/_event_type_8cs_source.html
index 583d97a3fb..42ca58105d 100644
--- a/_event_type_8cs_source.html
+++ b/_event_type_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_experimental_watchdog_8cs.html b/_experimental_watchdog_8cs.html
index 6ff0948a37..7fb89ad0ac 100644
--- a/_experimental_watchdog_8cs.html
+++ b/_experimental_watchdog_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_experimental_watchdog_8cs_source.html b/_experimental_watchdog_8cs_source.html
index dd420607f3..9fdfca0a92 100644
--- a/_experimental_watchdog_8cs_source.html
+++ b/_experimental_watchdog_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_features_8dox.html b/_features_8dox.html
index fa7544b5b7..693a7c81f2 100644
--- a/_features_8dox.html
+++ b/_features_8dox.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_file_logging_configuration_8cs.html b/_file_logging_configuration_8cs.html
index 2a7a9658ad..93dc80e1ff 100644
--- a/_file_logging_configuration_8cs.html
+++ b/_file_logging_configuration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_file_logging_configuration_8cs_source.html b/_file_logging_configuration_8cs_source.html
index 800ae53ec9..6dc15d3c2b 100644
--- a/_file_logging_configuration_8cs_source.html
+++ b/_file_logging_configuration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_general_configuration_8cs.html b/_general_configuration_8cs.html
index e3567f80dd..ec56e56655 100644
--- a/_general_configuration_8cs.html
+++ b/_general_configuration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_general_configuration_8cs_source.html b/_general_configuration_8cs_source.html
index 2a397dffec..a076ac4de0 100644
--- a/_general_configuration_8cs_source.html
+++ b/_general_configuration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_git_hub_client_factory_8cs.html b/_git_hub_client_factory_8cs.html
index a0ba8ed4b0..6f33d43ef2 100644
--- a/_git_hub_client_factory_8cs.html
+++ b/_git_hub_client_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_git_hub_client_factory_8cs_source.html b/_git_hub_client_factory_8cs_source.html
index 9859847c05..1bc7a2120c 100644
--- a/_git_hub_client_factory_8cs_source.html
+++ b/_git_hub_client_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_global_suppressions_8cs.html b/_global_suppressions_8cs.html
index 7fb7385544..d7487bd7df 100644
--- a/_global_suppressions_8cs.html
+++ b/_global_suppressions_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_global_suppressions_8cs_source.html b/_global_suppressions_8cs_source.html
index 39fe02b746..4eb17888b4 100644
--- a/_global_suppressions_8cs_source.html
+++ b/_global_suppressions_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_home_controller_8cs.html b/_home_controller_8cs.html
index da016dbd9f..bbdfdb2b69 100644
--- a/_home_controller_8cs.html
+++ b/_home_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_home_controller_8cs_source.html b/_home_controller_8cs_source.html
index a4f05b7a48..08f828898c 100644
--- a/_home_controller_8cs_source.html
+++ b/_home_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_host_builder_extensions_8cs.html b/_host_builder_extensions_8cs.html
index d87c43e013..4c5330bcef 100644
--- a/_host_builder_extensions_8cs.html
+++ b/_host_builder_extensions_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_host_builder_extensions_8cs_source.html b/_host_builder_extensions_8cs_source.html
index 27fd952f70..463647cfc5 100644
--- a/_host_builder_extensions_8cs_source.html
+++ b/_host_builder_extensions_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_http_client_8cs.html b/_http_client_8cs.html
index c006a16885..eeaa335978 100644
--- a/_http_client_8cs.html
+++ b/_http_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_http_client_8cs_source.html b/_http_client_8cs_source.html
index 12d4906bfe..dbf91601de 100644
--- a/_http_client_8cs_source.html
+++ b/_http_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_administration_client_8cs.html b/_i_administration_client_8cs.html
index fbb8f4e315..ee409a3ef3 100644
--- a/_i_administration_client_8cs.html
+++ b/_i_administration_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_administration_client_8cs_source.html b/_i_administration_client_8cs_source.html
index 8285061dd1..3b6d2e9cbd 100644
--- a/_i_administration_client_8cs_source.html
+++ b/_i_administration_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_api_client_8cs.html b/_i_api_client_8cs.html
index a07495a61d..704d728e96 100644
--- a/_i_api_client_8cs.html
+++ b/_i_api_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_api_client_8cs_source.html b/_i_api_client_8cs_source.html
index 7fb0ee51d0..abc9b96d70 100644
--- a/_i_api_client_8cs_source.html
+++ b/_i_api_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_api_client_factory_8cs.html b/_i_api_client_factory_8cs.html
index 040b98c950..0581a98ec5 100644
--- a/_i_api_client_factory_8cs.html
+++ b/_i_api_client_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_api_client_factory_8cs_source.html b/_i_api_client_factory_8cs_source.html
index 88f5418045..300420b7e7 100644
--- a/_i_api_client_factory_8cs_source.html
+++ b/_i_api_client_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_assembly_information_provider_8cs.html b/_i_assembly_information_provider_8cs.html
index 5cf1aa3f54..0d0dcefc78 100644
--- a/_i_assembly_information_provider_8cs.html
+++ b/_i_assembly_information_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_assembly_information_provider_8cs_source.html b/_i_assembly_information_provider_8cs_source.html
index 7e77332847..55a21308b7 100644
--- a/_i_assembly_information_provider_8cs_source.html
+++ b/_i_assembly_information_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_async_delayer_8cs.html b/_i_async_delayer_8cs.html
index b1fced996e..09f45f37dd 100644
--- a/_i_async_delayer_8cs.html
+++ b/_i_async_delayer_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_async_delayer_8cs_source.html b/_i_async_delayer_8cs_source.html
index 7f24e33c45..88be0909a8 100644
--- a/_i_async_delayer_8cs_source.html
+++ b/_i_async_delayer_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_authentication_context_8cs.html b/_i_authentication_context_8cs.html
index dfbfb64a9a..3c88549f3b 100644
--- a/_i_authentication_context_8cs.html
+++ b/_i_authentication_context_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_authentication_context_8cs_source.html b/_i_authentication_context_8cs_source.html
index d216065343..df8eae3445 100644
--- a/_i_authentication_context_8cs_source.html
+++ b/_i_authentication_context_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_authentication_context_factory_8cs.html b/_i_authentication_context_factory_8cs.html
index 4025a7c285..b3920dcc57 100644
--- a/_i_authentication_context_factory_8cs.html
+++ b/_i_authentication_context_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_authentication_context_factory_8cs_source.html b/_i_authentication_context_factory_8cs_source.html
index 579aaece6a..9133e62df9 100644
--- a/_i_authentication_context_factory_8cs_source.html
+++ b/_i_authentication_context_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_bridge_dispatcher_8cs.html b/_i_bridge_dispatcher_8cs.html
index 37e11aa014..f865a90dec 100644
--- a/_i_bridge_dispatcher_8cs.html
+++ b/_i_bridge_dispatcher_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_bridge_dispatcher_8cs_source.html b/_i_bridge_dispatcher_8cs_source.html
index 1cbc8f4cd7..0703950260 100644
--- a/_i_bridge_dispatcher_8cs_source.html
+++ b/_i_bridge_dispatcher_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_bridge_handler_8cs.html b/_i_bridge_handler_8cs.html
index 2685b81551..9880967c53 100644
--- a/_i_bridge_handler_8cs.html
+++ b/_i_bridge_handler_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_bridge_handler_8cs_source.html b/_i_bridge_handler_8cs_source.html
index baa1dd5b18..96597816ff 100644
--- a/_i_bridge_handler_8cs_source.html
+++ b/_i_bridge_handler_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_bridge_registrar_8cs.html b/_i_bridge_registrar_8cs.html
index 3e28402f38..1121a2ad01 100644
--- a/_i_bridge_registrar_8cs.html
+++ b/_i_bridge_registrar_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_bridge_registrar_8cs_source.html b/_i_bridge_registrar_8cs_source.html
index 5e6824b77a..c9bce5e6fb 100644
--- a/_i_bridge_registrar_8cs_source.html
+++ b/_i_bridge_registrar_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_bridge_registration_8cs.html b/_i_bridge_registration_8cs.html
index 2017f9c887..f1e16e0e31 100644
--- a/_i_bridge_registration_8cs.html
+++ b/_i_bridge_registration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_bridge_registration_8cs_source.html b/_i_bridge_registration_8cs_source.html
index 18370d4d41..7be418985a 100644
--- a/_i_bridge_registration_8cs_source.html
+++ b/_i_bridge_registration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_byond_client_8cs.html b/_i_byond_client_8cs.html
index bafa73cd42..5c52a8d9e2 100644
--- a/_i_byond_client_8cs.html
+++ b/_i_byond_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_byond_client_8cs_source.html b/_i_byond_client_8cs_source.html
index 0b2fefe7b5..67e95515f2 100644
--- a/_i_byond_client_8cs_source.html
+++ b/_i_byond_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_byond_executable_lock_8cs.html b/_i_byond_executable_lock_8cs.html
index 0fde1a702f..5b9ce34bd8 100644
--- a/_i_byond_executable_lock_8cs.html
+++ b/_i_byond_executable_lock_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_byond_executable_lock_8cs_source.html b/_i_byond_executable_lock_8cs_source.html
index 59b7522c5a..eb02356561 100644
--- a/_i_byond_executable_lock_8cs_source.html
+++ b/_i_byond_executable_lock_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_byond_installer_8cs.html b/_i_byond_installer_8cs.html
index 025734c20f..7c42c39b47 100644
--- a/_i_byond_installer_8cs.html
+++ b/_i_byond_installer_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_byond_installer_8cs_source.html b/_i_byond_installer_8cs_source.html
index acdece7580..d6a9601543 100644
--- a/_i_byond_installer_8cs_source.html
+++ b/_i_byond_installer_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_byond_manager_8cs.html b/_i_byond_manager_8cs.html
index d13e90213c..ce31ee0da5 100644
--- a/_i_byond_manager_8cs.html
+++ b/_i_byond_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_byond_manager_8cs_source.html b/_i_byond_manager_8cs_source.html
index 15b9f2d51f..c891ff5f8d 100644
--- a/_i_byond_manager_8cs_source.html
+++ b/_i_byond_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_channel_sink_8cs.html b/_i_channel_sink_8cs.html
index 2493c1e155..02675cf7a0 100644
--- a/_i_channel_sink_8cs.html
+++ b/_i_channel_sink_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_channel_sink_8cs_source.html b/_i_channel_sink_8cs_source.html
index 7f2e9a39cd..80c73ae4a2 100644
--- a/_i_channel_sink_8cs_source.html
+++ b/_i_channel_sink_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_chat_bots_client_8cs.html b/_i_chat_bots_client_8cs.html
index b99d1f46de..14c0c7b6d0 100644
--- a/_i_chat_bots_client_8cs.html
+++ b/_i_chat_bots_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_chat_bots_client_8cs_source.html b/_i_chat_bots_client_8cs_source.html
index e241dff037..433cd820fe 100644
--- a/_i_chat_bots_client_8cs_source.html
+++ b/_i_chat_bots_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_chat_manager_8cs.html b/_i_chat_manager_8cs.html
index 7faf8b3b2e..95d70fa1dd 100644
--- a/_i_chat_manager_8cs.html
+++ b/_i_chat_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_chat_manager_8cs_source.html b/_i_chat_manager_8cs_source.html
index 80b22c892a..8bcb266ef2 100644
--- a/_i_chat_manager_8cs_source.html
+++ b/_i_chat_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_chat_manager_factory_8cs.html b/_i_chat_manager_factory_8cs.html
index b3da43ea3f..9c1bfcb21b 100644
--- a/_i_chat_manager_factory_8cs.html
+++ b/_i_chat_manager_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_chat_manager_factory_8cs_source.html b/_i_chat_manager_factory_8cs_source.html
index dc9d1a4404..40247154ab 100644
--- a/_i_chat_manager_factory_8cs_source.html
+++ b/_i_chat_manager_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_chat_tracking_context_8cs.html b/_i_chat_tracking_context_8cs.html
index 945ddaa995..694e22b808 100644
--- a/_i_chat_tracking_context_8cs.html
+++ b/_i_chat_tracking_context_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_chat_tracking_context_8cs_source.html b/_i_chat_tracking_context_8cs_source.html
index fa847dd8da..dbcb14faac 100644
--- a/_i_chat_tracking_context_8cs_source.html
+++ b/_i_chat_tracking_context_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_claims_injector_8cs.html b/_i_claims_injector_8cs.html
index 21577d5db6..e9246d246d 100644
--- a/_i_claims_injector_8cs.html
+++ b/_i_claims_injector_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_claims_injector_8cs_source.html b/_i_claims_injector_8cs_source.html
index ee4a8e321d..4edf9eb039 100644
--- a/_i_claims_injector_8cs_source.html
+++ b/_i_claims_injector_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_command_8cs.html b/_i_command_8cs.html
index 619b880a48..8be91c8e42 100644
--- a/_i_command_8cs.html
+++ b/_i_command_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_command_8cs_source.html b/_i_command_8cs_source.html
index 57bee3ee76..1f68ee2606 100644
--- a/_i_command_8cs_source.html
+++ b/_i_command_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_command_factory_8cs.html b/_i_command_factory_8cs.html
index 7d461ae759..6febca8984 100644
--- a/_i_command_factory_8cs.html
+++ b/_i_command_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_command_factory_8cs_source.html b/_i_command_factory_8cs_source.html
index e9cda4946a..35c3630d4c 100644
--- a/_i_command_factory_8cs_source.html
+++ b/_i_command_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_compile_job_sink_8cs.html b/_i_compile_job_sink_8cs.html
index 23c2370a99..c02eb07f92 100644
--- a/_i_compile_job_sink_8cs.html
+++ b/_i_compile_job_sink_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_compile_job_sink_8cs_source.html b/_i_compile_job_sink_8cs_source.html
index e89aeaf834..988e93bfe2 100644
--- a/_i_compile_job_sink_8cs_source.html
+++ b/_i_compile_job_sink_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_configuration_8cs.html b/_i_configuration_8cs.html
index 9ef397c080..f09403dbd0 100644
--- a/_i_configuration_8cs.html
+++ b/_i_configuration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_configuration_8cs_source.html b/_i_configuration_8cs_source.html
index f7fe5eef63..01e3ce036d 100644
--- a/_i_configuration_8cs_source.html
+++ b/_i_configuration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_configuration_client_8cs.html b/_i_configuration_client_8cs.html
index 3bcfc60baa..16587f006f 100644
--- a/_i_configuration_client_8cs.html
+++ b/_i_configuration_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_configuration_client_8cs_source.html b/_i_configuration_client_8cs_source.html
index 3b2895268f..1322c8313c 100644
--- a/_i_configuration_client_8cs_source.html
+++ b/_i_configuration_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_console_8cs.html b/_i_console_8cs.html
index 7f3ba4592a..104ce9181f 100644
--- a/_i_console_8cs.html
+++ b/_i_console_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_console_8cs_source.html b/_i_console_8cs_source.html
index 5ef9578a44..e8879e8806 100644
--- a/_i_console_8cs_source.html
+++ b/_i_console_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_credentials_provider_8cs.html b/_i_credentials_provider_8cs.html
index 1d1635651c..443363c533 100644
--- a/_i_credentials_provider_8cs.html
+++ b/_i_credentials_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_credentials_provider_8cs_source.html b/_i_credentials_provider_8cs_source.html
index d9cfad96bb..774cf129e2 100644
--- a/_i_credentials_provider_8cs_source.html
+++ b/_i_credentials_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_cryptography_suite_8cs.html b/_i_cryptography_suite_8cs.html
index f379567492..6df9887720 100644
--- a/_i_cryptography_suite_8cs.html
+++ b/_i_cryptography_suite_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_cryptography_suite_8cs_source.html b/_i_cryptography_suite_8cs_source.html
index d10b8c2360..0f95137cd5 100644
--- a/_i_cryptography_suite_8cs_source.html
+++ b/_i_cryptography_suite_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_custom_command_handler_8cs.html b/_i_custom_command_handler_8cs.html
index 45de655aab..026a6e1df1 100644
--- a/_i_custom_command_handler_8cs.html
+++ b/_i_custom_command_handler_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_custom_command_handler_8cs_source.html b/_i_custom_command_handler_8cs_source.html
index 81ebf85395..e431b95baf 100644
--- a/_i_custom_command_handler_8cs_source.html
+++ b/_i_custom_command_handler_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_database_collection_8cs.html b/_i_database_collection_8cs.html
index 14d173519e..cd0fc567ef 100644
--- a/_i_database_collection_8cs.html
+++ b/_i_database_collection_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_database_collection_8cs_source.html b/_i_database_collection_8cs_source.html
index 51630c04b2..565acfeaec 100644
--- a/_i_database_collection_8cs_source.html
+++ b/_i_database_collection_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_database_connection_factory_8cs.html b/_i_database_connection_factory_8cs.html
index 6387f99fb4..1b70ae7531 100644
--- a/_i_database_connection_factory_8cs.html
+++ b/_i_database_connection_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_database_connection_factory_8cs_source.html b/_i_database_connection_factory_8cs_source.html
index 049010c307..dc4bb824c2 100644
--- a/_i_database_connection_factory_8cs_source.html
+++ b/_i_database_connection_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_database_context_8cs.html b/_i_database_context_8cs.html
index 8b2762b1b8..082b1cc51c 100644
--- a/_i_database_context_8cs.html
+++ b/_i_database_context_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_database_context_8cs_source.html b/_i_database_context_8cs_source.html
index e8b9f18f72..fb34d98984 100644
--- a/_i_database_context_8cs_source.html
+++ b/_i_database_context_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_database_context_factory_8cs.html b/_i_database_context_factory_8cs.html
index 39f7ff4e5b..6487fe756c 100644
--- a/_i_database_context_factory_8cs.html
+++ b/_i_database_context_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_database_context_factory_8cs_source.html b/_i_database_context_factory_8cs_source.html
index 224ad1c049..2b583347fc 100644
--- a/_i_database_context_factory_8cs_source.html
+++ b/_i_database_context_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_database_seeder_8cs.html b/_i_database_seeder_8cs.html
index 45aed0b92c..f4ea09dd38 100644
--- a/_i_database_seeder_8cs.html
+++ b/_i_database_seeder_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_database_seeder_8cs_source.html b/_i_database_seeder_8cs_source.html
index 3d7bae6e36..b43cc8f0e7 100644
--- a/_i_database_seeder_8cs_source.html
+++ b/_i_database_seeder_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_dmb_factory_8cs.html b/_i_dmb_factory_8cs.html
index 34321f82e6..c2e4bb34e4 100644
--- a/_i_dmb_factory_8cs.html
+++ b/_i_dmb_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_dmb_factory_8cs_source.html b/_i_dmb_factory_8cs_source.html
index 7e8d5c2605..e143744d32 100644
--- a/_i_dmb_factory_8cs_source.html
+++ b/_i_dmb_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_dmb_provider_8cs.html b/_i_dmb_provider_8cs.html
index 0f10f4945c..1e6e576abb 100644
--- a/_i_dmb_provider_8cs.html
+++ b/_i_dmb_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_dmb_provider_8cs_source.html b/_i_dmb_provider_8cs_source.html
index 7121077afe..8f4acd1362 100644
--- a/_i_dmb_provider_8cs_source.html
+++ b/_i_dmb_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_dream_daemon_client_8cs.html b/_i_dream_daemon_client_8cs.html
index 18123aefa4..0a925b1f5d 100644
--- a/_i_dream_daemon_client_8cs.html
+++ b/_i_dream_daemon_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_dream_daemon_client_8cs_source.html b/_i_dream_daemon_client_8cs_source.html
index 7347ca0fe9..a7b94149de 100644
--- a/_i_dream_daemon_client_8cs_source.html
+++ b/_i_dream_daemon_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_dream_maker_8cs.html b/_i_dream_maker_8cs.html
index 9430d1dec9..c57f89e23f 100644
--- a/_i_dream_maker_8cs.html
+++ b/_i_dream_maker_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_dream_maker_8cs_source.html b/_i_dream_maker_8cs_source.html
index 8ddbf7d5b7..edc3c16731 100644
--- a/_i_dream_maker_8cs_source.html
+++ b/_i_dream_maker_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_dream_maker_client_8cs.html b/_i_dream_maker_client_8cs.html
index c89f747538..591590a269 100644
--- a/_i_dream_maker_client_8cs.html
+++ b/_i_dream_maker_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_dream_maker_client_8cs_source.html b/_i_dream_maker_client_8cs_source.html
index fbdd6c5e70..d6c2383882 100644
--- a/_i_dream_maker_client_8cs_source.html
+++ b/_i_dream_maker_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_event_consumer_8cs.html b/_i_event_consumer_8cs.html
index 93780e8547..81181a03c5 100644
--- a/_i_event_consumer_8cs.html
+++ b/_i_event_consumer_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_event_consumer_8cs_source.html b/_i_event_consumer_8cs_source.html
index 8050bbdb0e..31beef97be 100644
--- a/_i_event_consumer_8cs_source.html
+++ b/_i_event_consumer_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_git_hub_client_factory_8cs.html b/_i_git_hub_client_factory_8cs.html
index afca173116..6b4495db0c 100644
--- a/_i_git_hub_client_factory_8cs.html
+++ b/_i_git_hub_client_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_git_hub_client_factory_8cs_source.html b/_i_git_hub_client_factory_8cs_source.html
index ad5c95c3fd..48c3edc576 100644
--- a/_i_git_hub_client_factory_8cs_source.html
+++ b/_i_git_hub_client_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_http_client_8cs.html b/_i_http_client_8cs.html
index 12e93a7fe0..580057adb8 100644
--- a/_i_http_client_8cs.html
+++ b/_i_http_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_http_client_8cs_source.html b/_i_http_client_8cs_source.html
index 500feca83f..4b78385516 100644
--- a/_i_http_client_8cs_source.html
+++ b/_i_http_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_i_o_manager_8cs.html b/_i_i_o_manager_8cs.html
index 5fdab5cf51..b4bc9e0d35 100644
--- a/_i_i_o_manager_8cs.html
+++ b/_i_i_o_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_i_o_manager_8cs_source.html b/_i_i_o_manager_8cs_source.html
index 5f3f2a8e50..53d1075f61 100644
--- a/_i_i_o_manager_8cs_source.html
+++ b/_i_i_o_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_identity_cache_8cs.html b/_i_identity_cache_8cs.html
index 4191bfe444..4d0bfb9302 100644
--- a/_i_identity_cache_8cs.html
+++ b/_i_identity_cache_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_identity_cache_8cs_source.html b/_i_identity_cache_8cs_source.html
index cda54acf75..0c06dc15dd 100644
--- a/_i_identity_cache_8cs_source.html
+++ b/_i_identity_cache_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_instance_8cs.html b/_i_instance_8cs.html
index add2c8cced..3e67ff5a9f 100644
--- a/_i_instance_8cs.html
+++ b/_i_instance_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_instance_8cs_source.html b/_i_instance_8cs_source.html
index ba44cebc12..b5f3be257c 100644
--- a/_i_instance_8cs_source.html
+++ b/_i_instance_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_instance_client_8cs.html b/_i_instance_client_8cs.html
index 848bdadf1e..63e9315250 100644
--- a/_i_instance_client_8cs.html
+++ b/_i_instance_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_instance_client_8cs_source.html b/_i_instance_client_8cs_source.html
index 119a2b7442..2b125a7dd9 100644
--- a/_i_instance_client_8cs_source.html
+++ b/_i_instance_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_instance_factory_8cs.html b/_i_instance_factory_8cs.html
index 3621d74c03..09a4b215f2 100644
--- a/_i_instance_factory_8cs.html
+++ b/_i_instance_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_instance_factory_8cs_source.html b/_i_instance_factory_8cs_source.html
index b86dc9864d..504f406cbd 100644
--- a/_i_instance_factory_8cs_source.html
+++ b/_i_instance_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_instance_manager_8cs.html b/_i_instance_manager_8cs.html
index 611366b24b..6965ab5171 100644
--- a/_i_instance_manager_8cs.html
+++ b/_i_instance_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_instance_manager_8cs_source.html b/_i_instance_manager_8cs_source.html
index 557cb046ae..f3b18458f2 100644
--- a/_i_instance_manager_8cs_source.html
+++ b/_i_instance_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_instance_manager_client_8cs.html b/_i_instance_manager_client_8cs.html
index a80dbdebb4..aac75e038d 100644
--- a/_i_instance_manager_client_8cs.html
+++ b/_i_instance_manager_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_instance_manager_client_8cs_source.html b/_i_instance_manager_client_8cs_source.html
index 9a7236a0ba..1ee58eb195 100644
--- a/_i_instance_manager_client_8cs_source.html
+++ b/_i_instance_manager_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_instance_user_client_8cs.html b/_i_instance_user_client_8cs.html
index ab792824b7..76aa6d7f61 100644
--- a/_i_instance_user_client_8cs.html
+++ b/_i_instance_user_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_instance_user_client_8cs_source.html b/_i_instance_user_client_8cs_source.html
index 2e013341c2..ee2a4af858 100644
--- a/_i_instance_user_client_8cs_source.html
+++ b/_i_instance_user_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_job_manager_8cs.html b/_i_job_manager_8cs.html
index d5b4aeaed6..6908a242e9 100644
--- a/_i_job_manager_8cs.html
+++ b/_i_job_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_job_manager_8cs_source.html b/_i_job_manager_8cs_source.html
index c86efe22fb..fb087fb9f7 100644
--- a/_i_job_manager_8cs_source.html
+++ b/_i_job_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_jobs_client_8cs.html b/_i_jobs_client_8cs.html
index 57ab96009f..c944645595 100644
--- a/_i_jobs_client_8cs.html
+++ b/_i_jobs_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_jobs_client_8cs_source.html b/_i_jobs_client_8cs_source.html
index 7f17b1623e..6f600f634c 100644
--- a/_i_jobs_client_8cs_source.html
+++ b/_i_jobs_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_latest_compile_job_provider_8cs.html b/_i_latest_compile_job_provider_8cs.html
index 579e0b985d..5fce09c0db 100644
--- a/_i_latest_compile_job_provider_8cs.html
+++ b/_i_latest_compile_job_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_latest_compile_job_provider_8cs_source.html b/_i_latest_compile_job_provider_8cs_source.html
index b05df0c856..7cf171007d 100644
--- a/_i_latest_compile_job_provider_8cs_source.html
+++ b/_i_latest_compile_job_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_lib_git2_commands_8cs.html b/_i_lib_git2_commands_8cs.html
index 5c13885646..3960bafd1d 100644
--- a/_i_lib_git2_commands_8cs.html
+++ b/_i_lib_git2_commands_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_lib_git2_commands_8cs_source.html b/_i_lib_git2_commands_8cs_source.html
index 7335232d7c..b8e0dfdb02 100644
--- a/_i_lib_git2_commands_8cs_source.html
+++ b/_i_lib_git2_commands_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_lib_git2_repository_factory_8cs.html b/_i_lib_git2_repository_factory_8cs.html
index 6b00485a78..09da3b1e91 100644
--- a/_i_lib_git2_repository_factory_8cs.html
+++ b/_i_lib_git2_repository_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_lib_git2_repository_factory_8cs_source.html b/_i_lib_git2_repository_factory_8cs_source.html
index 306de0921b..335c401986 100644
--- a/_i_lib_git2_repository_factory_8cs_source.html
+++ b/_i_lib_git2_repository_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_network_prompt_reaper_8cs.html b/_i_network_prompt_reaper_8cs.html
index 2f1ae4f090..aa7e1a9215 100644
--- a/_i_network_prompt_reaper_8cs.html
+++ b/_i_network_prompt_reaper_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_network_prompt_reaper_8cs_source.html b/_i_network_prompt_reaper_8cs_source.html
index 46e17d6476..8558760ba8 100644
--- a/_i_network_prompt_reaper_8cs_source.html
+++ b/_i_network_prompt_reaper_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_platform_identifier_8cs.html b/_i_platform_identifier_8cs.html
index c287780c1c..5448314b46 100644
--- a/_i_platform_identifier_8cs.html
+++ b/_i_platform_identifier_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_platform_identifier_8cs_source.html b/_i_platform_identifier_8cs_source.html
index 089d4f384b..57456df8ff 100644
--- a/_i_platform_identifier_8cs_source.html
+++ b/_i_platform_identifier_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_post_setup_services_8cs.html b/_i_post_setup_services_8cs.html
index f7eeeab200..89f1820a52 100644
--- a/_i_post_setup_services_8cs.html
+++ b/_i_post_setup_services_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_post_setup_services_8cs_source.html b/_i_post_setup_services_8cs_source.html
index 8b1d810d1d..d697902b5b 100644
--- a/_i_post_setup_services_8cs_source.html
+++ b/_i_post_setup_services_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_post_write_handler_8cs.html b/_i_post_write_handler_8cs.html
index 1bfb3afef0..139018a527 100644
--- a/_i_post_write_handler_8cs.html
+++ b/_i_post_write_handler_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_post_write_handler_8cs_source.html b/_i_post_write_handler_8cs_source.html
index becfc140b7..a51cb7f7f4 100644
--- a/_i_post_write_handler_8cs_source.html
+++ b/_i_post_write_handler_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_process_8cs.html b/_i_process_8cs.html
index 7f607ebfb0..7ae3a5d766 100644
--- a/_i_process_8cs.html
+++ b/_i_process_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_process_8cs_source.html b/_i_process_8cs_source.html
index 07c522e970..c0f4473e62 100644
--- a/_i_process_8cs_source.html
+++ b/_i_process_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_process_base_8cs.html b/_i_process_base_8cs.html
index 9a5f762e74..faf48f71ba 100644
--- a/_i_process_base_8cs.html
+++ b/_i_process_base_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_process_base_8cs_source.html b/_i_process_base_8cs_source.html
index 879b43995f..0823d54500 100644
--- a/_i_process_base_8cs_source.html
+++ b/_i_process_base_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_process_executor_8cs.html b/_i_process_executor_8cs.html
index c5fba58896..e94561991d 100644
--- a/_i_process_executor_8cs.html
+++ b/_i_process_executor_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_process_executor_8cs_source.html b/_i_process_executor_8cs_source.html
index 73a09119e5..9b7ac5c6b2 100644
--- a/_i_process_executor_8cs_source.html
+++ b/_i_process_executor_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_process_features_8cs.html b/_i_process_features_8cs.html
index 1aa417294b..6c9e53dd2b 100644
--- a/_i_process_features_8cs.html
+++ b/_i_process_features_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_process_features_8cs_source.html b/_i_process_features_8cs_source.html
index fb2031ea17..48fdd54910 100644
--- a/_i_process_features_8cs_source.html
+++ b/_i_process_features_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_provider_8cs.html b/_i_provider_8cs.html
index a780536a12..f3ed73bc70 100644
--- a/_i_provider_8cs.html
+++ b/_i_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_provider_8cs_source.html b/_i_provider_8cs_source.html
index 39bb5f53ca..d526211c7c 100644
--- a/_i_provider_8cs_source.html
+++ b/_i_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_provider_factory_8cs.html b/_i_provider_factory_8cs.html
index 3b3f7eb63b..1fbd861c6e 100644
--- a/_i_provider_factory_8cs.html
+++ b/_i_provider_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_provider_factory_8cs_source.html b/_i_provider_factory_8cs_source.html
index 319431a79c..5c689f6bba 100644
--- a/_i_provider_factory_8cs_source.html
+++ b/_i_provider_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_reattach_info_handler_8cs.html b/_i_reattach_info_handler_8cs.html
index 29edc1e0ce..b8ca233e5b 100644
--- a/_i_reattach_info_handler_8cs.html
+++ b/_i_reattach_info_handler_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_reattach_info_handler_8cs_source.html b/_i_reattach_info_handler_8cs_source.html
index b0abc38795..208151a942 100644
--- a/_i_reattach_info_handler_8cs_source.html
+++ b/_i_reattach_info_handler_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_repository_8cs.html b/_i_repository_8cs.html
index 1f345fc92d..7315019737 100644
--- a/_i_repository_8cs.html
+++ b/_i_repository_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_repository_8cs_source.html b/_i_repository_8cs_source.html
index d8dba376a2..0564e7002a 100644
--- a/_i_repository_8cs_source.html
+++ b/_i_repository_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_repository_client_8cs.html b/_i_repository_client_8cs.html
index 1e15910062..afc8a11a59 100644
--- a/_i_repository_client_8cs.html
+++ b/_i_repository_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_repository_client_8cs_source.html b/_i_repository_client_8cs_source.html
index 0ce218dcef..b0ebb31f14 100644
--- a/_i_repository_client_8cs_source.html
+++ b/_i_repository_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_repository_manager_8cs.html b/_i_repository_manager_8cs.html
index b17a879f20..fbdedb19ba 100644
--- a/_i_repository_manager_8cs.html
+++ b/_i_repository_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_repository_manager_8cs_source.html b/_i_repository_manager_8cs_source.html
index 3691804023..cc36015ec7 100644
--- a/_i_repository_manager_8cs_source.html
+++ b/_i_repository_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_request_logger_8cs.html b/_i_request_logger_8cs.html
index 933c84a886..3987d53354 100644
--- a/_i_request_logger_8cs.html
+++ b/_i_request_logger_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_request_logger_8cs_source.html b/_i_request_logger_8cs_source.html
index 51d246500d..24cf520558 100644
--- a/_i_request_logger_8cs_source.html
+++ b/_i_request_logger_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_restart_handler_8cs.html b/_i_restart_handler_8cs.html
index 717686e3e0..0c99cf9ae7 100644
--- a/_i_restart_handler_8cs.html
+++ b/_i_restart_handler_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_restart_handler_8cs_source.html b/_i_restart_handler_8cs_source.html
index 0dd2cc301a..2a17745bc8 100644
--- a/_i_restart_handler_8cs_source.html
+++ b/_i_restart_handler_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_restart_registration_8cs.html b/_i_restart_registration_8cs.html
index a25a71c298..db81b12756 100644
--- a/_i_restart_registration_8cs.html
+++ b/_i_restart_registration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_restart_registration_8cs_source.html b/_i_restart_registration_8cs_source.html
index 04ff0fb295..50d219580b 100644
--- a/_i_restart_registration_8cs_source.html
+++ b/_i_restart_registration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_server_8cs.html b/_i_server_8cs.html
index 855ca320bd..823d35b2a0 100644
--- a/_i_server_8cs.html
+++ b/_i_server_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_server_8cs_source.html b/_i_server_8cs_source.html
index 93fe30fab4..a931bb7b89 100644
--- a/_i_server_8cs_source.html
+++ b/_i_server_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_server_client_8cs.html b/_i_server_client_8cs.html
index 784ba83781..6956b6c4ab 100644
--- a/_i_server_client_8cs.html
+++ b/_i_server_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_server_client_8cs_source.html b/_i_server_client_8cs_source.html
index 186cea65fa..2f65a5f4b7 100644
--- a/_i_server_client_8cs_source.html
+++ b/_i_server_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_server_client_factory_8cs.html b/_i_server_client_factory_8cs.html
index ba2717cb24..cd7988ed39 100644
--- a/_i_server_client_factory_8cs.html
+++ b/_i_server_client_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_server_client_factory_8cs_source.html b/_i_server_client_factory_8cs_source.html
index 28e50b65e1..bd2253a108 100644
--- a/_i_server_client_factory_8cs_source.html
+++ b/_i_server_client_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_server_control_8cs.html b/_i_server_control_8cs.html
index d597a4411a..5efc81bf2a 100644
--- a/_i_server_control_8cs.html
+++ b/_i_server_control_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_server_control_8cs_source.html b/_i_server_control_8cs_source.html
index 26564763d4..ac23959e38 100644
--- a/_i_server_control_8cs_source.html
+++ b/_i_server_control_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_server_factory_8cs.html b/_i_server_factory_8cs.html
index 24d45a4aaa..c546f4cb99 100644
--- a/_i_server_factory_8cs.html
+++ b/_i_server_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_server_factory_8cs_source.html b/_i_server_factory_8cs_source.html
index f7d72e3aa8..ef9ddc5d29 100644
--- a/_i_server_factory_8cs_source.html
+++ b/_i_server_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_server_port_provider_8cs.html b/_i_server_port_provider_8cs.html
index 42d9ebf83f..4e7b1e3fa5 100644
--- a/_i_server_port_provider_8cs.html
+++ b/_i_server_port_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_server_port_provider_8cs_source.html b/_i_server_port_provider_8cs_source.html
index 50fc51e8c1..e07e0a139c 100644
--- a/_i_server_port_provider_8cs_source.html
+++ b/_i_server_port_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_session_controller_8cs.html b/_i_session_controller_8cs.html
index 806e397a0c..760a8c39ed 100644
--- a/_i_session_controller_8cs.html
+++ b/_i_session_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_session_controller_8cs_source.html b/_i_session_controller_8cs_source.html
index 76531ccd01..39d3dc3346 100644
--- a/_i_session_controller_8cs_source.html
+++ b/_i_session_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_session_controller_factory_8cs.html b/_i_session_controller_factory_8cs.html
index 7aa5356c22..763638d4f6 100644
--- a/_i_session_controller_factory_8cs.html
+++ b/_i_session_controller_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_session_controller_factory_8cs_source.html b/_i_session_controller_factory_8cs_source.html
index 8ef51cc4bf..1625da5a41 100644
--- a/_i_session_controller_factory_8cs_source.html
+++ b/_i_session_controller_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_symlink_factory_8cs.html b/_i_symlink_factory_8cs.html
index 458c3acd7e..e3ec852cee 100644
--- a/_i_symlink_factory_8cs.html
+++ b/_i_symlink_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_symlink_factory_8cs_source.html b/_i_symlink_factory_8cs_source.html
index 72e9ccf263..65f7accb88 100644
--- a/_i_symlink_factory_8cs_source.html
+++ b/_i_symlink_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_synchronous_i_o_manager_8cs.html b/_i_synchronous_i_o_manager_8cs.html
index bf6bffec74..cbe886133a 100644
--- a/_i_synchronous_i_o_manager_8cs.html
+++ b/_i_synchronous_i_o_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_synchronous_i_o_manager_8cs_source.html b/_i_synchronous_i_o_manager_8cs_source.html
index 9661d8cf69..c571887641 100644
--- a/_i_synchronous_i_o_manager_8cs_source.html
+++ b/_i_synchronous_i_o_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_system_identity_8cs.html b/_i_system_identity_8cs.html
index c108321d9d..141081c40e 100644
--- a/_i_system_identity_8cs.html
+++ b/_i_system_identity_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_system_identity_8cs_source.html b/_i_system_identity_8cs_source.html
index a487d7744a..0859708464 100644
--- a/_i_system_identity_8cs_source.html
+++ b/_i_system_identity_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_system_identity_factory_8cs.html b/_i_system_identity_factory_8cs.html
index aed4b35a0a..fa95b40544 100644
--- a/_i_system_identity_factory_8cs.html
+++ b/_i_system_identity_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_system_identity_factory_8cs_source.html b/_i_system_identity_factory_8cs_source.html
index 2a751661df..f49ec82b35 100644
--- a/_i_system_identity_factory_8cs_source.html
+++ b/_i_system_identity_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_token_factory_8cs.html b/_i_token_factory_8cs.html
index bdcc00349e..7742d20093 100644
--- a/_i_token_factory_8cs.html
+++ b/_i_token_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_token_factory_8cs_source.html b/_i_token_factory_8cs_source.html
index a3283f697f..b4f4448839 100644
--- a/_i_token_factory_8cs_source.html
+++ b/_i_token_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_users_client_8cs.html b/_i_users_client_8cs.html
index 7bcca76798..85b3808c31 100644
--- a/_i_users_client_8cs.html
+++ b/_i_users_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_i_users_client_8cs_source.html b/_i_users_client_8cs_source.html
index 865550de57..a2cb14aa83 100644
--- a/_i_users_client_8cs_source.html
+++ b/_i_users_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_identity_cache_8cs.html b/_identity_cache_8cs.html
index b96d37f47b..a3a453a260 100644
--- a/_identity_cache_8cs.html
+++ b/_identity_cache_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_identity_cache_8cs_source.html b/_identity_cache_8cs_source.html
index 1ae99e983e..61c9e64b2f 100644
--- a/_identity_cache_8cs_source.html
+++ b/_identity_cache_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_identity_cache_object_8cs.html b/_identity_cache_object_8cs.html
index 8dd6962468..041df2461e 100644
--- a/_identity_cache_object_8cs.html
+++ b/_identity_cache_object_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_identity_cache_object_8cs_source.html b/_identity_cache_object_8cs_source.html
index d724cdb158..eb37c4fc94 100644
--- a/_identity_cache_object_8cs_source.html
+++ b/_identity_cache_object_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_client_8cs.html b/_instance_client_8cs.html
index 55f61c5a46..5e59321a8e 100644
--- a/_instance_client_8cs.html
+++ b/_instance_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_client_8cs_source.html b/_instance_client_8cs_source.html
index d2e67a7013..a209f8a74b 100644
--- a/_instance_client_8cs_source.html
+++ b/_instance_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_controller_8cs.html b/_instance_controller_8cs.html
index a0cab45761..f58b3999a1 100644
--- a/_instance_controller_8cs.html
+++ b/_instance_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_controller_8cs_source.html b/_instance_controller_8cs_source.html
index 18369a9c27..996a415fbd 100644
--- a/_instance_controller_8cs_source.html
+++ b/_instance_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_factory_8cs.html b/_instance_factory_8cs.html
index 87549b289f..92762a8aa0 100644
--- a/_instance_factory_8cs.html
+++ b/_instance_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_factory_8cs_source.html b/_instance_factory_8cs_source.html
index f1662b9f23..b5ef5810eb 100644
--- a/_instance_factory_8cs_source.html
+++ b/_instance_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_manager_8cs.html b/_instance_manager_8cs.html
index 13b3eef8f2..0228d1ed98 100644
--- a/_instance_manager_8cs.html
+++ b/_instance_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_manager_8cs_source.html b/_instance_manager_8cs_source.html
index 8c760cd63d..710117ae4d 100644
--- a/_instance_manager_8cs_source.html
+++ b/_instance_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_manager_client_8cs.html b/_instance_manager_client_8cs.html
index ae5658b081..7de3d97412 100644
--- a/_instance_manager_client_8cs.html
+++ b/_instance_manager_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_manager_client_8cs_source.html b/_instance_manager_client_8cs_source.html
index 2251428bff..914b04c85f 100644
--- a/_instance_manager_client_8cs_source.html
+++ b/_instance_manager_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_manager_rights_8cs.html b/_instance_manager_rights_8cs.html
index 960cb3262c..74e56ab5c9 100644
--- a/_instance_manager_rights_8cs.html
+++ b/_instance_manager_rights_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_manager_rights_8cs_source.html b/_instance_manager_rights_8cs_source.html
index 2c7bb123e8..c184905fc0 100644
--- a/_instance_manager_rights_8cs_source.html
+++ b/_instance_manager_rights_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_user_client_8cs.html b/_instance_user_client_8cs.html
index f664336a7d..590eae32d8 100644
--- a/_instance_user_client_8cs.html
+++ b/_instance_user_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_user_client_8cs_source.html b/_instance_user_client_8cs_source.html
index 2986e46173..1cc3d97f3e 100644
--- a/_instance_user_client_8cs_source.html
+++ b/_instance_user_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_user_controller_8cs.html b/_instance_user_controller_8cs.html
index 5358344dba..195340c7d7 100644
--- a/_instance_user_controller_8cs.html
+++ b/_instance_user_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_user_controller_8cs_source.html b/_instance_user_controller_8cs_source.html
index 9e984ae4f0..cc24bcb1f7 100644
--- a/_instance_user_controller_8cs_source.html
+++ b/_instance_user_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_user_rights_8cs.html b/_instance_user_rights_8cs.html
index 1ccc2b8001..820146ea37 100644
--- a/_instance_user_rights_8cs.html
+++ b/_instance_user_rights_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_instance_user_rights_8cs_source.html b/_instance_user_rights_8cs_source.html
index 267dc34999..4a46c6fc93 100644
--- a/_instance_user_rights_8cs_source.html
+++ b/_instance_user_rights_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_insufficient_permissions_exception_8cs.html b/_insufficient_permissions_exception_8cs.html
index 2c31f19597..a47bcf7f7e 100644
--- a/_insufficient_permissions_exception_8cs.html
+++ b/_insufficient_permissions_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_insufficient_permissions_exception_8cs_source.html b/_insufficient_permissions_exception_8cs_source.html
index bdd1228fd4..dabcd129ab 100644
--- a/_insufficient_permissions_exception_8cs_source.html
+++ b/_insufficient_permissions_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_internal_2_server_information_8cs.html b/_internal_2_server_information_8cs.html
index 2c8ab101a9..3f2e0d99d5 100644
--- a/_internal_2_server_information_8cs.html
+++ b/_internal_2_server_information_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_internal_2_server_information_8cs_source.html b/_internal_2_server_information_8cs_source.html
index 6c550a77d7..4f51ce6dca 100644
--- a/_internal_2_server_information_8cs_source.html
+++ b/_internal_2_server_information_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_irc_connection_string_builder_8cs.html b/_irc_connection_string_builder_8cs.html
index 2ab24fbe63..5a41ff6b3e 100644
--- a/_irc_connection_string_builder_8cs.html
+++ b/_irc_connection_string_builder_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_irc_connection_string_builder_8cs_source.html b/_irc_connection_string_builder_8cs_source.html
index a7c2a8de16..a8a624ec67 100644
--- a/_irc_connection_string_builder_8cs_source.html
+++ b/_irc_connection_string_builder_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_irc_password_type_8cs.html b/_irc_password_type_8cs.html
index 9178fdc08c..e9e78d6655 100644
--- a/_irc_password_type_8cs.html
+++ b/_irc_password_type_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_irc_password_type_8cs_source.html b/_irc_password_type_8cs_source.html
index 96a21f83d6..72bc784323 100644
--- a/_irc_password_type_8cs_source.html
+++ b/_irc_password_type_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_irc_provider_8cs.html b/_irc_provider_8cs.html
index 0d70cb275a..bbc56a71a4 100644
--- a/_irc_provider_8cs.html
+++ b/_irc_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_irc_provider_8cs_source.html b/_irc_provider_8cs_source.html
index 7131d58067..d89f09dd49 100644
--- a/_irc_provider_8cs_source.html
+++ b/_irc_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_job_controller_8cs.html b/_job_controller_8cs.html
index b33068ce35..d5d6ac9d48 100644
--- a/_job_controller_8cs.html
+++ b/_job_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_job_controller_8cs_source.html b/_job_controller_8cs_source.html
index 47cd7121a6..63c7fb90b0 100644
--- a/_job_controller_8cs_source.html
+++ b/_job_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_job_exception_8cs.html b/_job_exception_8cs.html
index b8c8ad5ca9..29cdf0b8df 100644
--- a/_job_exception_8cs.html
+++ b/_job_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_job_exception_8cs_source.html b/_job_exception_8cs_source.html
index 55569a1bd6..e683260ff5 100644
--- a/_job_exception_8cs_source.html
+++ b/_job_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_job_handler_8cs.html b/_job_handler_8cs.html
index 0b3bed93a9..67183d440b 100644
--- a/_job_handler_8cs.html
+++ b/_job_handler_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_job_handler_8cs_source.html b/_job_handler_8cs_source.html
index e23c7df065..dfdcf1fe51 100644
--- a/_job_handler_8cs_source.html
+++ b/_job_handler_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_job_manager_8cs.html b/_job_manager_8cs.html
index d882bc688c..dd4b97091d 100644
--- a/_job_manager_8cs.html
+++ b/_job_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_job_manager_8cs_source.html b/_job_manager_8cs_source.html
index fba87ad188..e86c2bf69e 100644
--- a/_job_manager_8cs_source.html
+++ b/_job_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_jobs_client_8cs.html b/_jobs_client_8cs.html
index 3e74a3ec83..f6f828dcff 100644
--- a/_jobs_client_8cs.html
+++ b/_jobs_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_jobs_client_8cs_source.html b/_jobs_client_8cs_source.html
index b9ac327c83..b883f2a894 100644
--- a/_jobs_client_8cs_source.html
+++ b/_jobs_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_kek_command_8cs.html b/_kek_command_8cs.html
index 53fcc7593c..17531842a0 100644
--- a/_kek_command_8cs.html
+++ b/_kek_command_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_kek_command_8cs_source.html b/_kek_command_8cs_source.html
index bee956e242..5cab27cb23 100644
--- a/_kek_command_8cs_source.html
+++ b/_kek_command_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_launch_result_8cs.html b/_launch_result_8cs.html
index 65732ec93d..7819724c05 100644
--- a/_launch_result_8cs.html
+++ b/_launch_result_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_launch_result_8cs_source.html b/_launch_result_8cs_source.html
index 67aa40b9da..ba57ddde36 100644
--- a/_launch_result_8cs_source.html
+++ b/_launch_result_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_lib_git2_commands_8cs.html b/_lib_git2_commands_8cs.html
index 7eedf1bcf7..6bfd8c4a3a 100644
--- a/_lib_git2_commands_8cs.html
+++ b/_lib_git2_commands_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_lib_git2_commands_8cs_source.html b/_lib_git2_commands_8cs_source.html
index 712a4c3dee..f610e64aa0 100644
--- a/_lib_git2_commands_8cs_source.html
+++ b/_lib_git2_commands_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_lib_git2_repository_factory_8cs.html b/_lib_git2_repository_factory_8cs.html
index 3a331c073b..4a8bece925 100644
--- a/_lib_git2_repository_factory_8cs.html
+++ b/_lib_git2_repository_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_lib_git2_repository_factory_8cs_source.html b/_lib_git2_repository_factory_8cs_source.html
index 0bfdf86676..b4e242c1a5 100644
--- a/_lib_git2_repository_factory_8cs_source.html
+++ b/_lib_git2_repository_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_limits_8cs.html b/_limits_8cs.html
index 7bd663c418..8de2eb4e03 100644
--- a/_limits_8cs.html
+++ b/_limits_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_limits_8cs_source.html b/_limits_8cs_source.html
index 94bcf58555..b192951ccd 100644
--- a/_limits_8cs_source.html
+++ b/_limits_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_message_8cs.html b/_message_8cs.html
index 5821ac8154..53c6887b08 100644
--- a/_message_8cs.html
+++ b/_message_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_message_8cs_source.html b/_message_8cs_source.html
index 0d5c503394..04cb5c9f57 100644
--- a/_message_8cs_source.html
+++ b/_message_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_method_not_supported_exception_8cs.html b/_method_not_supported_exception_8cs.html
index 52c3b6c270..6b01858d7e 100644
--- a/_method_not_supported_exception_8cs.html
+++ b/_method_not_supported_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_method_not_supported_exception_8cs_source.html b/_method_not_supported_exception_8cs_source.html
index 3bd7157613..201d76b424 100644
--- a/_method_not_supported_exception_8cs_source.html
+++ b/_method_not_supported_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_models_2_dual_reattach_information_8cs.html b/_models_2_dual_reattach_information_8cs.html
index 316ab2439e..e92d8652b3 100644
--- a/_models_2_dual_reattach_information_8cs.html
+++ b/_models_2_dual_reattach_information_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_models_2_dual_reattach_information_8cs_source.html b/_models_2_dual_reattach_information_8cs_source.html
index 334ebe6bf2..aa93ce70f7 100644
--- a/_models_2_dual_reattach_information_8cs_source.html
+++ b/_models_2_dual_reattach_information_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_models_2_reattach_information_8cs.html b/_models_2_reattach_information_8cs.html
index 6186f1f07b..0dac588f10 100644
--- a/_models_2_reattach_information_8cs.html
+++ b/_models_2_reattach_information_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_models_2_reattach_information_8cs_source.html b/_models_2_reattach_information_8cs_source.html
index 9a9a87629b..e6e6e8f721 100644
--- a/_models_2_reattach_information_8cs_source.html
+++ b/_models_2_reattach_information_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_monitor_action_8cs.html b/_monitor_action_8cs.html
index d9aab637c2..180c001bf8 100644
--- a/_monitor_action_8cs.html
+++ b/_monitor_action_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_monitor_action_8cs_source.html b/_monitor_action_8cs_source.html
index b8f77f40a1..c17f36ba8c 100644
--- a/_monitor_action_8cs_source.html
+++ b/_monitor_action_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_monitor_activation_reason_8cs.html b/_monitor_activation_reason_8cs.html
index 16c4efd01b..aaea6909e1 100644
--- a/_monitor_activation_reason_8cs.html
+++ b/_monitor_activation_reason_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_monitor_activation_reason_8cs_source.html b/_monitor_activation_reason_8cs_source.html
index a59a83646e..ce74018f51 100644
--- a/_monitor_activation_reason_8cs_source.html
+++ b/_monitor_activation_reason_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_monitor_state_8cs.html b/_monitor_state_8cs.html
index 6bcb645189..703738a515 100644
--- a/_monitor_state_8cs.html
+++ b/_monitor_state_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_monitor_state_8cs_source.html b/_monitor_state_8cs_source.html
index 0a3369453f..fb7665e4d1 100644
--- a/_monitor_state_8cs_source.html
+++ b/_monitor_state_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_my_sql_database_context_8cs.html b/_my_sql_database_context_8cs.html
index 0bb27e298e..a612c0b161 100644
--- a/_my_sql_database_context_8cs.html
+++ b/_my_sql_database_context_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_my_sql_database_context_8cs_source.html b/_my_sql_database_context_8cs_source.html
index 389d41cd44..4f2169a06c 100644
--- a/_my_sql_database_context_8cs_source.html
+++ b/_my_sql_database_context_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_my_sql_database_context_model_snapshot_8cs.html b/_my_sql_database_context_model_snapshot_8cs.html
index 7a2eb2973c..c21315f99b 100644
--- a/_my_sql_database_context_model_snapshot_8cs.html
+++ b/_my_sql_database_context_model_snapshot_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_my_sql_database_context_model_snapshot_8cs_source.html b/_my_sql_database_context_model_snapshot_8cs_source.html
index 1dc35e5c4f..affe044b61 100644
--- a/_my_sql_database_context_model_snapshot_8cs_source.html
+++ b/_my_sql_database_context_model_snapshot_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_my_sql_design_time_db_context_factory_8cs.html b/_my_sql_design_time_db_context_factory_8cs.html
index fd476b2f64..057e41741a 100644
--- a/_my_sql_design_time_db_context_factory_8cs.html
+++ b/_my_sql_design_time_db_context_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_my_sql_design_time_db_context_factory_8cs_source.html b/_my_sql_design_time_db_context_factory_8cs_source.html
index 1755b01778..22a2854b07 100644
--- a/_my_sql_design_time_db_context_factory_8cs_source.html
+++ b/_my_sql_design_time_db_context_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_native_methods_8cs.html b/_native_methods_8cs.html
index e035efc644..40579a5a2c 100644
--- a/_native_methods_8cs.html
+++ b/_native_methods_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_native_methods_8cs_source.html b/_native_methods_8cs_source.html
index 4c23716a7f..60dbbb8176 100644
--- a/_native_methods_8cs_source.html
+++ b/_native_methods_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_open_api_enum_var_names_extension_8cs.html b/_open_api_enum_var_names_extension_8cs.html
index d1c44cffba..9ac1c11dd0 100644
--- a/_open_api_enum_var_names_extension_8cs.html
+++ b/_open_api_enum_var_names_extension_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_open_api_enum_var_names_extension_8cs_source.html b/_open_api_enum_var_names_extension_8cs_source.html
index febc13b32b..ff5951e907 100644
--- a/_open_api_enum_var_names_extension_8cs_source.html
+++ b/_open_api_enum_var_names_extension_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_platform_identifier_8cs.html b/_platform_identifier_8cs.html
index 3fb5353290..1adf8b2f1b 100644
--- a/_platform_identifier_8cs.html
+++ b/_platform_identifier_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_platform_identifier_8cs_source.html b/_platform_identifier_8cs_source.html
index f715784d2a..57871c67b9 100644
--- a/_platform_identifier_8cs_source.html
+++ b/_platform_identifier_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_byond_installer_8cs.html b/_posix_byond_installer_8cs.html
index 4826ddcc4f..7bdd93fe92 100644
--- a/_posix_byond_installer_8cs.html
+++ b/_posix_byond_installer_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_byond_installer_8cs_source.html b/_posix_byond_installer_8cs_source.html
index de88d5dffa..4bb2c80457 100644
--- a/_posix_byond_installer_8cs_source.html
+++ b/_posix_byond_installer_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_network_prompt_reaper_8cs.html b/_posix_network_prompt_reaper_8cs.html
index 0b2be57149..32144db909 100644
--- a/_posix_network_prompt_reaper_8cs.html
+++ b/_posix_network_prompt_reaper_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_network_prompt_reaper_8cs_source.html b/_posix_network_prompt_reaper_8cs_source.html
index 38540a255c..13a9c75d67 100644
--- a/_posix_network_prompt_reaper_8cs_source.html
+++ b/_posix_network_prompt_reaper_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_post_write_handler_8cs.html b/_posix_post_write_handler_8cs.html
index 10669aee16..6419a1760f 100644
--- a/_posix_post_write_handler_8cs.html
+++ b/_posix_post_write_handler_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_post_write_handler_8cs_source.html b/_posix_post_write_handler_8cs_source.html
index 50fe55ded1..1e787df8f4 100644
--- a/_posix_post_write_handler_8cs_source.html
+++ b/_posix_post_write_handler_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_process_features_8cs.html b/_posix_process_features_8cs.html
index bdd3d8c0a5..c61a3441ec 100644
--- a/_posix_process_features_8cs.html
+++ b/_posix_process_features_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_process_features_8cs_source.html b/_posix_process_features_8cs_source.html
index c282c4868a..72cb53826a 100644
--- a/_posix_process_features_8cs_source.html
+++ b/_posix_process_features_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_symlink_factory_8cs.html b/_posix_symlink_factory_8cs.html
index 59bac0ef73..e7a84c5a9a 100644
--- a/_posix_symlink_factory_8cs.html
+++ b/_posix_symlink_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_symlink_factory_8cs_source.html b/_posix_symlink_factory_8cs_source.html
index 03a619e461..c7438c44aa 100644
--- a/_posix_symlink_factory_8cs_source.html
+++ b/_posix_symlink_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_system_identity_8cs.html b/_posix_system_identity_8cs.html
index c2d6d47298..5a68f22c32 100644
--- a/_posix_system_identity_8cs.html
+++ b/_posix_system_identity_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_system_identity_8cs_source.html b/_posix_system_identity_8cs_source.html
index 84a982cb80..1e7975c47b 100644
--- a/_posix_system_identity_8cs_source.html
+++ b/_posix_system_identity_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_system_identity_factory_8cs.html b/_posix_system_identity_factory_8cs.html
index 59e61b221e..088158e2a0 100644
--- a/_posix_system_identity_factory_8cs.html
+++ b/_posix_system_identity_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_posix_system_identity_factory_8cs_source.html b/_posix_system_identity_factory_8cs_source.html
index 7861bc39d6..e8d56b4aac 100644
--- a/_posix_system_identity_factory_8cs_source.html
+++ b/_posix_system_identity_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_post_setup_services_8cs.html b/_post_setup_services_8cs.html
index c41d44e93e..4e66ceacf1 100644
--- a/_post_setup_services_8cs.html
+++ b/_post_setup_services_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_post_setup_services_8cs_source.html b/_post_setup_services_8cs_source.html
index 3b59650295..282177590b 100644
--- a/_post_setup_services_8cs_source.html
+++ b/_post_setup_services_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_process_8cs.html b/_process_8cs.html
index de66dc434e..fbd35d0ca3 100644
--- a/_process_8cs.html
+++ b/_process_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_process_8cs_source.html b/_process_8cs_source.html
index d77ea91186..1fb1bca012 100644
--- a/_process_8cs_source.html
+++ b/_process_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_process_executor_8cs.html b/_process_executor_8cs.html
index 0213799a44..a02180d2cb 100644
--- a/_process_executor_8cs.html
+++ b/_process_executor_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_process_executor_8cs_source.html b/_process_executor_8cs_source.html
index f0e167abb3..60b4928c2b 100644
--- a/_process_executor_8cs_source.html
+++ b/_process_executor_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_program_8cs.html b/_program_8cs.html
index 094c342b04..c8aca5719b 100644
--- a/_program_8cs.html
+++ b/_program_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_program_8cs_source.html b/_program_8cs_source.html
index d4a1c345ef..a5aaf90a76 100644
--- a/_program_8cs_source.html
+++ b/_program_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_program_shutdown_token_source_8cs.html b/_program_shutdown_token_source_8cs.html
index b0a71494dd..04932172e1 100644
--- a/_program_shutdown_token_source_8cs.html
+++ b/_program_shutdown_token_source_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_program_shutdown_token_source_8cs_source.html b/_program_shutdown_token_source_8cs_source.html
index 6afc7dfb7c..0642f70169 100644
--- a/_program_shutdown_token_source_8cs_source.html
+++ b/_program_shutdown_token_source_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_provider_8cs.html b/_provider_8cs.html
index f8e2352dca..6b173b6b1b 100644
--- a/_provider_8cs.html
+++ b/_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_provider_8cs_source.html b/_provider_8cs_source.html
index d3b59b2244..2f3589a18b 100644
--- a/_provider_8cs_source.html
+++ b/_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_provider_factory_8cs.html b/_provider_factory_8cs.html
index 91e3ec112e..437cf9686e 100644
--- a/_provider_factory_8cs.html
+++ b/_provider_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_provider_factory_8cs_source.html b/_provider_factory_8cs_source.html
index 03ee51def3..cf5df8f552 100644
--- a/_provider_factory_8cs_source.html
+++ b/_provider_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_pull_requests_command_8cs.html b/_pull_requests_command_8cs.html
index ca6f1eba01..bf25e58f64 100644
--- a/_pull_requests_command_8cs.html
+++ b/_pull_requests_command_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_pull_requests_command_8cs_source.html b/_pull_requests_command_8cs_source.html
index 4aa32cb649..467d26fe31 100644
--- a/_pull_requests_command_8cs_source.html
+++ b/_pull_requests_command_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_r_e_a_d_m_e_8md.html b/_r_e_a_d_m_e_8md.html
index 9598fb47f4..b755b9836f 100644
--- a/_r_e_a_d_m_e_8md.html
+++ b/_r_e_a_d_m_e_8md.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_r_e_a_d_m_e_8md_source.html b/_r_e_a_d_m_e_8md_source.html
index 63417d1003..d79c680e62 100644
--- a/_r_e_a_d_m_e_8md_source.html
+++ b/_r_e_a_d_m_e_8md_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_rate_limit_exception_8cs.html b/_rate_limit_exception_8cs.html
index b75f5e8584..9179e88aa4 100644
--- a/_rate_limit_exception_8cs.html
+++ b/_rate_limit_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_rate_limit_exception_8cs_source.html b/_rate_limit_exception_8cs_source.html
index e2d650213b..cd1af424cf 100644
--- a/_rate_limit_exception_8cs_source.html
+++ b/_rate_limit_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_reattach_info_handler_8cs.html b/_reattach_info_handler_8cs.html
index 3ce1db30a2..b85fb725d2 100644
--- a/_reattach_info_handler_8cs.html
+++ b/_reattach_info_handler_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_reattach_info_handler_8cs_source.html b/_reattach_info_handler_8cs_source.html
index c3275d60f3..40a29cd8c6 100644
--- a/_reattach_info_handler_8cs_source.html
+++ b/_reattach_info_handler_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_reattach_information_base_8cs.html b/_reattach_information_base_8cs.html
index 095e6d58c9..b9e5454686 100644
--- a/_reattach_information_base_8cs.html
+++ b/_reattach_information_base_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_reattach_information_base_8cs_source.html b/_reattach_information_base_8cs_source.html
index 9f0a6c8e18..030b77526c 100644
--- a/_reattach_information_base_8cs_source.html
+++ b/_reattach_information_base_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_reboot_state_8cs.html b/_reboot_state_8cs.html
index 8c4adb4d54..a067353d9d 100644
--- a/_reboot_state_8cs.html
+++ b/_reboot_state_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_reboot_state_8cs_source.html b/_reboot_state_8cs_source.html
index 1c2a1e3dcd..a007bf60ee 100644
--- a/_reboot_state_8cs_source.html
+++ b/_reboot_state_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_repository_client_8cs.html b/_repository_client_8cs.html
index e54d3683bf..4eb256ec11 100644
--- a/_repository_client_8cs.html
+++ b/_repository_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_repository_client_8cs_source.html b/_repository_client_8cs_source.html
index 5150f95b43..7ae6986da5 100644
--- a/_repository_client_8cs_source.html
+++ b/_repository_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_repository_controller_8cs.html b/_repository_controller_8cs.html
index 9c800395b5..1b7744b162 100644
--- a/_repository_controller_8cs.html
+++ b/_repository_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_repository_controller_8cs_source.html b/_repository_controller_8cs_source.html
index 7da1b9b304..d0abe59d5e 100644
--- a/_repository_controller_8cs_source.html
+++ b/_repository_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_repository_manager_8cs.html b/_repository_manager_8cs.html
index e06ee95b72..b6593e7dfa 100644
--- a/_repository_manager_8cs.html
+++ b/_repository_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_repository_manager_8cs_source.html b/_repository_manager_8cs_source.html
index 20230d1832..af730985e9 100644
--- a/_repository_manager_8cs_source.html
+++ b/_repository_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_repository_rights_8cs.html b/_repository_rights_8cs.html
index 76ddede45a..7669fa1175 100644
--- a/_repository_rights_8cs.html
+++ b/_repository_rights_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_repository_rights_8cs_source.html b/_repository_rights_8cs_source.html
index ef31415784..32681e6a8c 100644
--- a/_repository_rights_8cs_source.html
+++ b/_repository_rights_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_request_timeout_exception_8cs.html b/_request_timeout_exception_8cs.html
index 5838e351d8..76e09a059c 100644
--- a/_request_timeout_exception_8cs.html
+++ b/_request_timeout_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_request_timeout_exception_8cs_source.html b/_request_timeout_exception_8cs_source.html
index a7e24f0da3..055d10e2a4 100644
--- a/_request_timeout_exception_8cs_source.html
+++ b/_request_timeout_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_resolving_i_o_manager_8cs.html b/_resolving_i_o_manager_8cs.html
index b6fa96e62f..da4b5b6d31 100644
--- a/_resolving_i_o_manager_8cs.html
+++ b/_resolving_i_o_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_resolving_i_o_manager_8cs_source.html b/_resolving_i_o_manager_8cs_source.html
index adc6a0f07b..92926f5129 100644
--- a/_resolving_i_o_manager_8cs_source.html
+++ b/_resolving_i_o_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_restart_registration_8cs.html b/_restart_registration_8cs.html
index af8a514596..43ed74378e 100644
--- a/_restart_registration_8cs.html
+++ b/_restart_registration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_restart_registration_8cs_source.html b/_restart_registration_8cs_source.html
index 0248af787e..c544387e09 100644
--- a/_restart_registration_8cs_source.html
+++ b/_restart_registration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_rev_info_test_merge_8cs.html b/_rev_info_test_merge_8cs.html
index 36ee298db3..dc1a217a9e 100644
--- a/_rev_info_test_merge_8cs.html
+++ b/_rev_info_test_merge_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_rev_info_test_merge_8cs_source.html b/_rev_info_test_merge_8cs_source.html
index 897995d2ea..3ae1a04d4a 100644
--- a/_rev_info_test_merge_8cs_source.html
+++ b/_rev_info_test_merge_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_revision_command_8cs.html b/_revision_command_8cs.html
index 2c99609d32..d87d4eeeae 100644
--- a/_revision_command_8cs.html
+++ b/_revision_command_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_revision_command_8cs_source.html b/_revision_command_8cs_source.html
index 5170a256a9..e0de1d0d9b 100644
--- a/_revision_command_8cs_source.html
+++ b/_revision_command_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_rights_helper_8cs.html b/_rights_helper_8cs.html
index c595b23ef7..98213d7923 100644
--- a/_rights_helper_8cs.html
+++ b/_rights_helper_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_rights_helper_8cs_source.html b/_rights_helper_8cs_source.html
index 3d43b66f83..bc49265543 100644
--- a/_rights_helper_8cs_source.html
+++ b/_rights_helper_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_rights_type_8cs.html b/_rights_type_8cs.html
index fce52576f4..f8e4fa9fd1 100644
--- a/_rights_type_8cs.html
+++ b/_rights_type_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_rights_type_8cs_source.html b/_rights_type_8cs_source.html
index 24419fbdd0..40851f36a2 100644
--- a/_rights_type_8cs_source.html
+++ b/_rights_type_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_routes_8cs.html b/_routes_8cs.html
index 4dea3b44fd..2c0e131b51 100644
--- a/_routes_8cs.html
+++ b/_routes_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_routes_8cs_source.html b/_routes_8cs_source.html
index bce7376848..9631cbae5e 100644
--- a/_routes_8cs_source.html
+++ b/_routes_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_runtime_information_8cs.html b/_runtime_information_8cs.html
index 1e2c48c3a2..523c46bcaa 100644
--- a/_runtime_information_8cs.html
+++ b/_runtime_information_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_runtime_information_8cs_source.html b/_runtime_information_8cs_source.html
index 212f6cb50d..8beade749d 100644
--- a/_runtime_information_8cs_source.html
+++ b/_runtime_information_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_semaphore_slim_context_8cs.html b/_semaphore_slim_context_8cs.html
index 1d20adcd70..ef80631f06 100644
--- a/_semaphore_slim_context_8cs.html
+++ b/_semaphore_slim_context_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_semaphore_slim_context_8cs_source.html b/_semaphore_slim_context_8cs_source.html
index 05eacc0644..2b57c5e576 100644
--- a/_semaphore_slim_context_8cs_source.html
+++ b/_semaphore_slim_context_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_8cs.html b/_server_8cs.html
index 701564737b..a60bfcff50 100644
--- a/_server_8cs.html
+++ b/_server_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_8cs_source.html b/_server_8cs_source.html
index 23e2987542..37ab77ebf5 100644
--- a/_server_8cs_source.html
+++ b/_server_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_client_8cs.html b/_server_client_8cs.html
index a2c1407509..b6f021ee11 100644
--- a/_server_client_8cs.html
+++ b/_server_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_client_8cs_source.html b/_server_client_8cs_source.html
index 2310a657e2..43fcec7819 100644
--- a/_server_client_8cs_source.html
+++ b/_server_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_client_factory_8cs.html b/_server_client_factory_8cs.html
index aa0e5a9baf..505b494b27 100644
--- a/_server_client_factory_8cs.html
+++ b/_server_client_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_client_factory_8cs_source.html b/_server_client_factory_8cs_source.html
index 805a4adcd6..09708347b5 100644
--- a/_server_client_factory_8cs_source.html
+++ b/_server_client_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_error_exception_8cs.html b/_server_error_exception_8cs.html
index ff410a5976..dd959a6aa5 100644
--- a/_server_error_exception_8cs.html
+++ b/_server_error_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_error_exception_8cs_source.html b/_server_error_exception_8cs_source.html
index 4eaac0d98f..7228e99c4d 100644
--- a/_server_error_exception_8cs_source.html
+++ b/_server_error_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_factory_8cs.html b/_server_factory_8cs.html
index d6242870a6..2f926c98f0 100644
--- a/_server_factory_8cs.html
+++ b/_server_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_factory_8cs_source.html b/_server_factory_8cs_source.html
index 90990cafe6..5758d5b2cf 100644
--- a/_server_factory_8cs_source.html
+++ b/_server_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_information_8cs.html b/_server_information_8cs.html
index c5d2f6ddc7..874f88681f 100644
--- a/_server_information_8cs.html
+++ b/_server_information_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_information_8cs_source.html b/_server_information_8cs_source.html
index 90101c29fa..9c49c362f2 100644
--- a/_server_information_8cs_source.html
+++ b/_server_information_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_port_proivder_8cs.html b/_server_port_proivder_8cs.html
index 786f35d2e4..8793775fca 100644
--- a/_server_port_proivder_8cs.html
+++ b/_server_port_proivder_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_port_proivder_8cs_source.html b/_server_port_proivder_8cs_source.html
index 08e19642a1..24c1d43097 100644
--- a/_server_port_proivder_8cs_source.html
+++ b/_server_port_proivder_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_service_8cs.html b/_server_service_8cs.html
index e237e09724..2e5b600816 100644
--- a/_server_service_8cs.html
+++ b/_server_service_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_service_8cs_source.html b/_server_service_8cs_source.html
index a864dcb3ec..4888ed3a2a 100644
--- a/_server_service_8cs_source.html
+++ b/_server_service_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_side_modifications_8cs.html b/_server_side_modifications_8cs.html
index 45247e1178..2a581881e1 100644
--- a/_server_side_modifications_8cs.html
+++ b/_server_side_modifications_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_server_side_modifications_8cs_source.html b/_server_side_modifications_8cs_source.html
index 49c5715274..56436f6cad 100644
--- a/_server_side_modifications_8cs_source.html
+++ b/_server_side_modifications_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_service_2_program_8cs.html b/_service_2_program_8cs.html
index df8dffb9d0..ab919d206a 100644
--- a/_service_2_program_8cs.html
+++ b/_service_2_program_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_service_2_program_8cs_source.html b/_service_2_program_8cs_source.html
index e1354c5500..50464b2e7b 100644
--- a/_service_2_program_8cs_source.html
+++ b/_service_2_program_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_service_collection_extensions_8cs.html b/_service_collection_extensions_8cs.html
index 1d969cca97..8d7f2db2ad 100644
--- a/_service_collection_extensions_8cs.html
+++ b/_service_collection_extensions_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_service_collection_extensions_8cs_source.html b/_service_collection_extensions_8cs_source.html
index 853c6419b3..2db4c97844 100644
--- a/_service_collection_extensions_8cs_source.html
+++ b/_service_collection_extensions_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_service_unavailable_exception_8cs.html b/_service_unavailable_exception_8cs.html
index 960909f58d..46072def15 100644
--- a/_service_unavailable_exception_8cs.html
+++ b/_service_unavailable_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_service_unavailable_exception_8cs_source.html b/_service_unavailable_exception_8cs_source.html
index 46d78b8c01..0c03de3e83 100644
--- a/_service_unavailable_exception_8cs_source.html
+++ b/_service_unavailable_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_session_controller_8cs.html b/_session_controller_8cs.html
index 0f2ed242fb..8feded515f 100644
--- a/_session_controller_8cs.html
+++ b/_session_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_session_controller_8cs_source.html b/_session_controller_8cs_source.html
index c05e5ef51b..b0a5e26e1c 100644
--- a/_session_controller_8cs_source.html
+++ b/_session_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_session_controller_factory_8cs.html b/_session_controller_factory_8cs.html
index 60ff96015b..25e036f2ee 100644
--- a/_session_controller_factory_8cs.html
+++ b/_session_controller_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_session_controller_factory_8cs_source.html b/_session_controller_factory_8cs_source.html
index fbb3fe3461..289f0e7576 100644
--- a/_session_controller_factory_8cs_source.html
+++ b/_session_controller_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_setup_application_8cs.html b/_setup_application_8cs.html
index ebdf9405d8..a3609f63da 100644
--- a/_setup_application_8cs.html
+++ b/_setup_application_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_setup_application_8cs_source.html b/_setup_application_8cs_source.html
index 3b5362d31b..f8e5902349 100644
--- a/_setup_application_8cs_source.html
+++ b/_setup_application_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_setup_wizard_8cs.html b/_setup_wizard_8cs.html
index f437352e58..ba7368a758 100644
--- a/_setup_wizard_8cs.html
+++ b/_setup_wizard_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_setup_wizard_8cs_source.html b/_setup_wizard_8cs_source.html
index 6c10318b9c..e00b0a35c3 100644
--- a/_setup_wizard_8cs_source.html
+++ b/_setup_wizard_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_setup_wizard_mode_8cs.html b/_setup_wizard_mode_8cs.html
index bc17a151ae..5ebbed4d05 100644
--- a/_setup_wizard_mode_8cs.html
+++ b/_setup_wizard_mode_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_setup_wizard_mode_8cs_source.html b/_setup_wizard_mode_8cs_source.html
index 5ebb480837..0dfb012b1b 100644
--- a/_setup_wizard_mode_8cs_source.html
+++ b/_setup_wizard_mode_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_sql_server_database_context_8cs.html b/_sql_server_database_context_8cs.html
index f8731856b4..b7b00ec598 100644
--- a/_sql_server_database_context_8cs.html
+++ b/_sql_server_database_context_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_sql_server_database_context_8cs_source.html b/_sql_server_database_context_8cs_source.html
index f1d84effad..61427933ec 100644
--- a/_sql_server_database_context_8cs_source.html
+++ b/_sql_server_database_context_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_sql_server_database_context_model_snapshot_8cs.html b/_sql_server_database_context_model_snapshot_8cs.html
index fad97f2934..f27eec0d10 100644
--- a/_sql_server_database_context_model_snapshot_8cs.html
+++ b/_sql_server_database_context_model_snapshot_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_sql_server_database_context_model_snapshot_8cs_source.html b/_sql_server_database_context_model_snapshot_8cs_source.html
index 26940033e8..f7761e070d 100644
--- a/_sql_server_database_context_model_snapshot_8cs_source.html
+++ b/_sql_server_database_context_model_snapshot_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_sql_server_design_time_db_context_factory_8cs.html b/_sql_server_design_time_db_context_factory_8cs.html
index ea89612447..3f8c5a4c65 100644
--- a/_sql_server_design_time_db_context_factory_8cs.html
+++ b/_sql_server_design_time_db_context_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_sql_server_design_time_db_context_factory_8cs_source.html b/_sql_server_design_time_db_context_factory_8cs_source.html
index 62303bacaf..f1ffb2f7f8 100644
--- a/_sql_server_design_time_db_context_factory_8cs_source.html
+++ b/_sql_server_design_time_db_context_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_sqlite_database_context_8cs.html b/_sqlite_database_context_8cs.html
index 248c41478c..40006a8cb0 100644
--- a/_sqlite_database_context_8cs.html
+++ b/_sqlite_database_context_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_sqlite_database_context_8cs_source.html b/_sqlite_database_context_8cs_source.html
index 919ff6a120..2380bbd4fd 100644
--- a/_sqlite_database_context_8cs_source.html
+++ b/_sqlite_database_context_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_sqlite_database_context_model_snapshot_8cs.html b/_sqlite_database_context_model_snapshot_8cs.html
index 30c2b82e70..0fa786444a 100644
--- a/_sqlite_database_context_model_snapshot_8cs.html
+++ b/_sqlite_database_context_model_snapshot_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_sqlite_database_context_model_snapshot_8cs_source.html b/_sqlite_database_context_model_snapshot_8cs_source.html
index 26e0063734..39210904c1 100644
--- a/_sqlite_database_context_model_snapshot_8cs_source.html
+++ b/_sqlite_database_context_model_snapshot_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_sqlite_design_time_db_context_factory_8cs.html b/_sqlite_design_time_db_context_factory_8cs.html
index 07e7032cf1..608ba80b55 100644
--- a/_sqlite_design_time_db_context_factory_8cs.html
+++ b/_sqlite_design_time_db_context_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_sqlite_design_time_db_context_factory_8cs_source.html b/_sqlite_design_time_db_context_factory_8cs_source.html
index de45998b1f..48ceb2d619 100644
--- a/_sqlite_design_time_db_context_factory_8cs_source.html
+++ b/_sqlite_design_time_db_context_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_swagger_configuration_8cs.html b/_swagger_configuration_8cs.html
index ea022f8659..4b2d387bf7 100644
--- a/_swagger_configuration_8cs.html
+++ b/_swagger_configuration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_swagger_configuration_8cs_source.html b/_swagger_configuration_8cs_source.html
index f6e4e206f7..e3e129e969 100644
--- a/_swagger_configuration_8cs_source.html
+++ b/_swagger_configuration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_synchronous_i_o_manager_8cs.html b/_synchronous_i_o_manager_8cs.html
index 7870e2abc1..b3fc9709be 100644
--- a/_synchronous_i_o_manager_8cs.html
+++ b/_synchronous_i_o_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_synchronous_i_o_manager_8cs_source.html b/_synchronous_i_o_manager_8cs_source.html
index 7576349b12..d6fdfcecc4 100644
--- a/_synchronous_i_o_manager_8cs_source.html
+++ b/_synchronous_i_o_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_task_extensions_8cs.html b/_task_extensions_8cs.html
index c05ffe49e9..b65bff0bae 100644
--- a/_task_extensions_8cs.html
+++ b/_task_extensions_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_task_extensions_8cs_source.html b/_task_extensions_8cs_source.html
index e973bee366..e8504f1818 100644
--- a/_task_extensions_8cs_source.html
+++ b/_task_extensions_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_temporary_dmb_provider_8cs.html b/_temporary_dmb_provider_8cs.html
index 6cb2c655d2..b9987febf4 100644
--- a/_temporary_dmb_provider_8cs.html
+++ b/_temporary_dmb_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_temporary_dmb_provider_8cs_source.html b/_temporary_dmb_provider_8cs_source.html
index 6a7b4ba30a..3327819697 100644
--- a/_temporary_dmb_provider_8cs_source.html
+++ b/_temporary_dmb_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_test_merge_base_8cs.html b/_test_merge_base_8cs.html
index 6f089c7393..22f2ab1723 100644
--- a/_test_merge_base_8cs.html
+++ b/_test_merge_base_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_test_merge_base_8cs_source.html b/_test_merge_base_8cs_source.html
index f8783c1462..d660b71f56 100644
--- a/_test_merge_base_8cs_source.html
+++ b/_test_merge_base_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_test_merge_information_8cs.html b/_test_merge_information_8cs.html
index 4048ada3f2..8c40a1f880 100644
--- a/_test_merge_information_8cs.html
+++ b/_test_merge_information_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_test_merge_information_8cs_source.html b/_test_merge_information_8cs_source.html
index d8a3e82c87..2a5933ad2d 100644
--- a/_test_merge_information_8cs_source.html
+++ b/_test_merge_information_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_test_merge_parameters_8cs.html b/_test_merge_parameters_8cs.html
index 6c8b47083c..b3ee5f795a 100644
--- a/_test_merge_parameters_8cs.html
+++ b/_test_merge_parameters_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_test_merge_parameters_8cs_source.html b/_test_merge_parameters_8cs_source.html
index fc18673294..9061429d8c 100644
--- a/_test_merge_parameters_8cs_source.html
+++ b/_test_merge_parameters_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgs_authorize_attribute_8cs.html b/_tgs_authorize_attribute_8cs.html
index ca3b195b41..c5ca96804a 100644
--- a/_tgs_authorize_attribute_8cs.html
+++ b/_tgs_authorize_attribute_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgs_authorize_attribute_8cs_source.html b/_tgs_authorize_attribute_8cs_source.html
index 5d5f8faab1..bc6de722cb 100644
--- a/_tgs_authorize_attribute_8cs_source.html
+++ b/_tgs_authorize_attribute_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_chat_bot_8cs.html b/_tgstation_8_server_8_api_2_models_2_chat_bot_8cs.html
index 41dcc9db97..e5265b870e 100644
--- a/_tgstation_8_server_8_api_2_models_2_chat_bot_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_chat_bot_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_chat_bot_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_chat_bot_8cs_source.html
index 5c73ea43d7..ea7de3b0f4 100644
--- a/_tgstation_8_server_8_api_2_models_2_chat_bot_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_chat_bot_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_chat_channel_8cs.html b/_tgstation_8_server_8_api_2_models_2_chat_channel_8cs.html
index 09a1df0845..12bb5cb113 100644
--- a/_tgstation_8_server_8_api_2_models_2_chat_channel_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_chat_channel_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_chat_channel_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_chat_channel_8cs_source.html
index accca5bcbc..e7a3461d99 100644
--- a/_tgstation_8_server_8_api_2_models_2_chat_channel_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_chat_channel_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_compile_job_8cs.html b/_tgstation_8_server_8_api_2_models_2_compile_job_8cs.html
index 753bebdc0c..a3528a551f 100644
--- a/_tgstation_8_server_8_api_2_models_2_compile_job_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_compile_job_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_compile_job_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_compile_job_8cs_source.html
index 77c3780d61..813c199022 100644
--- a/_tgstation_8_server_8_api_2_models_2_compile_job_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_compile_job_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_dream_maker_8cs.html b/_tgstation_8_server_8_api_2_models_2_dream_maker_8cs.html
index 0465529ae2..8dd54595e8 100644
--- a/_tgstation_8_server_8_api_2_models_2_dream_maker_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_dream_maker_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_dream_maker_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_dream_maker_8cs_source.html
index 95ff31d24c..57b481be5c 100644
--- a/_tgstation_8_server_8_api_2_models_2_dream_maker_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_dream_maker_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_instance_8cs.html b/_tgstation_8_server_8_api_2_models_2_instance_8cs.html
index 6442b7dc30..cbf2d326aa 100644
--- a/_tgstation_8_server_8_api_2_models_2_instance_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_instance_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_instance_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_instance_8cs_source.html
index 0a821593b6..3e0e9463c6 100644
--- a/_tgstation_8_server_8_api_2_models_2_instance_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_instance_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_instance_user_8cs.html b/_tgstation_8_server_8_api_2_models_2_instance_user_8cs.html
index ea49193e5c..1bc9672546 100644
--- a/_tgstation_8_server_8_api_2_models_2_instance_user_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_instance_user_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_instance_user_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_instance_user_8cs_source.html
index e6d85976a7..6be5ef89fe 100644
--- a/_tgstation_8_server_8_api_2_models_2_instance_user_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_instance_user_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_chat_bot_8cs.html b/_tgstation_8_server_8_api_2_models_2_internal_2_chat_bot_8cs.html
index ebb1695c73..fade9b5450 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_chat_bot_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_chat_bot_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_chat_bot_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_internal_2_chat_bot_8cs_source.html
index 593673c1cf..e21450cfd3 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_chat_bot_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_chat_bot_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_compile_job_8cs.html b/_tgstation_8_server_8_api_2_models_2_internal_2_compile_job_8cs.html
index 0e64bb40e4..0a8544fa01 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_compile_job_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_compile_job_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_compile_job_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_internal_2_compile_job_8cs_source.html
index 8756063e39..5409b04311 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_compile_job_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_compile_job_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_dream_daemon_settings_8cs.html b/_tgstation_8_server_8_api_2_models_2_internal_2_dream_daemon_settings_8cs.html
index 5fdb7e32a6..88a1b907a5 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_dream_daemon_settings_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_dream_daemon_settings_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_dream_daemon_settings_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_internal_2_dream_daemon_settings_8cs_source.html
index 58494ca86a..cbaa784222 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_dream_daemon_settings_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_dream_daemon_settings_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_job_8cs.html b/_tgstation_8_server_8_api_2_models_2_internal_2_job_8cs.html
index f7fb50df42..e8fe32dcf0 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_job_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_job_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_job_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_internal_2_job_8cs_source.html
index 6d58aabdf3..35d091bb9a 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_job_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_job_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_repository_settings_8cs.html b/_tgstation_8_server_8_api_2_models_2_internal_2_repository_settings_8cs.html
index 3df7394c04..fa5e5c2d1e 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_repository_settings_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_repository_settings_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_repository_settings_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_internal_2_repository_settings_8cs_source.html
index 2f2fe0d6b2..ef086b6709 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_repository_settings_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_repository_settings_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs.html b/_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs.html
index 9ead2d8b0b..25bf5519f4 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs_source.html
index 66d6738d73..e2ab34064b 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_test_merge_8cs.html b/_tgstation_8_server_8_api_2_models_2_internal_2_test_merge_8cs.html
index 257bf33f4a..957661cff7 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_test_merge_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_test_merge_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_test_merge_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_internal_2_test_merge_8cs_source.html
index 5b6c121e3a..8b43ddeb19 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_test_merge_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_test_merge_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_user_8cs.html b/_tgstation_8_server_8_api_2_models_2_internal_2_user_8cs.html
index 63f62aa352..86150787db 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_user_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_user_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_internal_2_user_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_internal_2_user_8cs_source.html
index c0435b66d0..4324ee6eb5 100644
--- a/_tgstation_8_server_8_api_2_models_2_internal_2_user_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_internal_2_user_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_job_8cs.html b/_tgstation_8_server_8_api_2_models_2_job_8cs.html
index 76f995cd2d..f5ff6736f8 100644
--- a/_tgstation_8_server_8_api_2_models_2_job_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_job_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_job_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_job_8cs_source.html
index bf0d1d2ef4..41b58da2b8 100644
--- a/_tgstation_8_server_8_api_2_models_2_job_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_job_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_repository_8cs.html b/_tgstation_8_server_8_api_2_models_2_repository_8cs.html
index 3ae43c0791..d9e9f176f9 100644
--- a/_tgstation_8_server_8_api_2_models_2_repository_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_repository_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_repository_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_repository_8cs_source.html
index e8c8d61eab..be2812655e 100644
--- a/_tgstation_8_server_8_api_2_models_2_repository_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_repository_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_revision_information_8cs.html b/_tgstation_8_server_8_api_2_models_2_revision_information_8cs.html
index 84d38182e9..9f3b31d329 100644
--- a/_tgstation_8_server_8_api_2_models_2_revision_information_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_revision_information_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_revision_information_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_revision_information_8cs_source.html
index 57bffdb9c2..3559f4ab6f 100644
--- a/_tgstation_8_server_8_api_2_models_2_revision_information_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_revision_information_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_test_merge_8cs.html b/_tgstation_8_server_8_api_2_models_2_test_merge_8cs.html
index 1be67987d5..913182e759 100644
--- a/_tgstation_8_server_8_api_2_models_2_test_merge_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_test_merge_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_test_merge_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_test_merge_8cs_source.html
index e667f3e561..039956bd2a 100644
--- a/_tgstation_8_server_8_api_2_models_2_test_merge_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_test_merge_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_user_8cs.html b/_tgstation_8_server_8_api_2_models_2_user_8cs.html
index 290ee0e685..2dfb0009cc 100644
--- a/_tgstation_8_server_8_api_2_models_2_user_8cs.html
+++ b/_tgstation_8_server_8_api_2_models_2_user_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_api_2_models_2_user_8cs_source.html b/_tgstation_8_server_8_api_2_models_2_user_8cs_source.html
index 8c403ead8d..95257153d5 100644
--- a/_tgstation_8_server_8_api_2_models_2_user_8cs_source.html
+++ b/_tgstation_8_server_8_api_2_models_2_user_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_client_2_assembly_info_8cs.html b/_tgstation_8_server_8_client_2_assembly_info_8cs.html
index 90d78094b8..f0d1009cb4 100644
--- a/_tgstation_8_server_8_client_2_assembly_info_8cs.html
+++ b/_tgstation_8_server_8_client_2_assembly_info_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_client_2_assembly_info_8cs_source.html b/_tgstation_8_server_8_client_2_assembly_info_8cs_source.html
index 96af2ac716..d980a73e91 100644
--- a/_tgstation_8_server_8_client_2_assembly_info_8cs_source.html
+++ b/_tgstation_8_server_8_client_2_assembly_info_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_components_2_deployment_2_dream_maker_8cs.html b/_tgstation_8_server_8_host_2_components_2_deployment_2_dream_maker_8cs.html
index 61a6ef4d82..96732272b6 100644
--- a/_tgstation_8_server_8_host_2_components_2_deployment_2_dream_maker_8cs.html
+++ b/_tgstation_8_server_8_host_2_components_2_deployment_2_dream_maker_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_components_2_deployment_2_dream_maker_8cs_source.html b/_tgstation_8_server_8_host_2_components_2_deployment_2_dream_maker_8cs_source.html
index 892d549a22..e01dedc179 100644
--- a/_tgstation_8_server_8_host_2_components_2_deployment_2_dream_maker_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_components_2_deployment_2_dream_maker_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_components_2_instance_8cs.html b/_tgstation_8_server_8_host_2_components_2_instance_8cs.html
index f564fca35c..fedd79ecb5 100644
--- a/_tgstation_8_server_8_host_2_components_2_instance_8cs.html
+++ b/_tgstation_8_server_8_host_2_components_2_instance_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_components_2_instance_8cs_source.html b/_tgstation_8_server_8_host_2_components_2_instance_8cs_source.html
index 27a2479344..30978eb21c 100644
--- a/_tgstation_8_server_8_host_2_components_2_instance_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_components_2_instance_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_components_2_repository_2_repository_8cs.html b/_tgstation_8_server_8_host_2_components_2_repository_2_repository_8cs.html
index 2a0b5b2ec9..d7f33c9345 100644
--- a/_tgstation_8_server_8_host_2_components_2_repository_2_repository_8cs.html
+++ b/_tgstation_8_server_8_host_2_components_2_repository_2_repository_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_components_2_repository_2_repository_8cs_source.html b/_tgstation_8_server_8_host_2_components_2_repository_2_repository_8cs_source.html
index bf695280e0..7236f1376a 100644
--- a/_tgstation_8_server_8_host_2_components_2_repository_2_repository_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_components_2_repository_2_repository_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_chat_bot_8cs.html b/_tgstation_8_server_8_host_2_models_2_chat_bot_8cs.html
index 696d002817..eee71e7135 100644
--- a/_tgstation_8_server_8_host_2_models_2_chat_bot_8cs.html
+++ b/_tgstation_8_server_8_host_2_models_2_chat_bot_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_chat_bot_8cs_source.html b/_tgstation_8_server_8_host_2_models_2_chat_bot_8cs_source.html
index e5aafafe9a..18bb9c9d87 100644
--- a/_tgstation_8_server_8_host_2_models_2_chat_bot_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_models_2_chat_bot_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_chat_channel_8cs.html b/_tgstation_8_server_8_host_2_models_2_chat_channel_8cs.html
index aac6dbdf0a..4e16746264 100644
--- a/_tgstation_8_server_8_host_2_models_2_chat_channel_8cs.html
+++ b/_tgstation_8_server_8_host_2_models_2_chat_channel_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_chat_channel_8cs_source.html b/_tgstation_8_server_8_host_2_models_2_chat_channel_8cs_source.html
index 9bc269cd37..fd9d4fad76 100644
--- a/_tgstation_8_server_8_host_2_models_2_chat_channel_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_models_2_chat_channel_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_compile_job_8cs.html b/_tgstation_8_server_8_host_2_models_2_compile_job_8cs.html
index a85141d770..4ee8573f17 100644
--- a/_tgstation_8_server_8_host_2_models_2_compile_job_8cs.html
+++ b/_tgstation_8_server_8_host_2_models_2_compile_job_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_compile_job_8cs_source.html b/_tgstation_8_server_8_host_2_models_2_compile_job_8cs_source.html
index 3c1a434e5a..c5c2b5fb14 100644
--- a/_tgstation_8_server_8_host_2_models_2_compile_job_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_models_2_compile_job_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_dream_daemon_settings_8cs.html b/_tgstation_8_server_8_host_2_models_2_dream_daemon_settings_8cs.html
index afb08afc30..bd0ced125c 100644
--- a/_tgstation_8_server_8_host_2_models_2_dream_daemon_settings_8cs.html
+++ b/_tgstation_8_server_8_host_2_models_2_dream_daemon_settings_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_dream_daemon_settings_8cs_source.html b/_tgstation_8_server_8_host_2_models_2_dream_daemon_settings_8cs_source.html
index fad38840c8..06cb494329 100644
--- a/_tgstation_8_server_8_host_2_models_2_dream_daemon_settings_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_models_2_dream_daemon_settings_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_instance_8cs.html b/_tgstation_8_server_8_host_2_models_2_instance_8cs.html
index 5cfbf7141b..8a6d9305db 100644
--- a/_tgstation_8_server_8_host_2_models_2_instance_8cs.html
+++ b/_tgstation_8_server_8_host_2_models_2_instance_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_instance_8cs_source.html b/_tgstation_8_server_8_host_2_models_2_instance_8cs_source.html
index b2051d37b3..1f3e3ba49b 100644
--- a/_tgstation_8_server_8_host_2_models_2_instance_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_models_2_instance_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_instance_user_8cs.html b/_tgstation_8_server_8_host_2_models_2_instance_user_8cs.html
index f5836a6172..356ac52f4b 100644
--- a/_tgstation_8_server_8_host_2_models_2_instance_user_8cs.html
+++ b/_tgstation_8_server_8_host_2_models_2_instance_user_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_instance_user_8cs_source.html b/_tgstation_8_server_8_host_2_models_2_instance_user_8cs_source.html
index dcf398c070..202cd9fb8a 100644
--- a/_tgstation_8_server_8_host_2_models_2_instance_user_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_models_2_instance_user_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_job_8cs.html b/_tgstation_8_server_8_host_2_models_2_job_8cs.html
index c8e87552a3..fe4e643976 100644
--- a/_tgstation_8_server_8_host_2_models_2_job_8cs.html
+++ b/_tgstation_8_server_8_host_2_models_2_job_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_job_8cs_source.html b/_tgstation_8_server_8_host_2_models_2_job_8cs_source.html
index 82a600afb8..8a12d83e6a 100644
--- a/_tgstation_8_server_8_host_2_models_2_job_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_models_2_job_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_repository_settings_8cs.html b/_tgstation_8_server_8_host_2_models_2_repository_settings_8cs.html
index 60acc003dc..62ebab4a36 100644
--- a/_tgstation_8_server_8_host_2_models_2_repository_settings_8cs.html
+++ b/_tgstation_8_server_8_host_2_models_2_repository_settings_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_repository_settings_8cs_source.html b/_tgstation_8_server_8_host_2_models_2_repository_settings_8cs_source.html
index 583c47a848..215b0be3e2 100644
--- a/_tgstation_8_server_8_host_2_models_2_repository_settings_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_models_2_repository_settings_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_revision_information_8cs.html b/_tgstation_8_server_8_host_2_models_2_revision_information_8cs.html
index 3413e074b5..f2b69b4618 100644
--- a/_tgstation_8_server_8_host_2_models_2_revision_information_8cs.html
+++ b/_tgstation_8_server_8_host_2_models_2_revision_information_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_revision_information_8cs_source.html b/_tgstation_8_server_8_host_2_models_2_revision_information_8cs_source.html
index 6c4cc03a0d..b207d371b9 100644
--- a/_tgstation_8_server_8_host_2_models_2_revision_information_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_models_2_revision_information_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_test_merge_8cs.html b/_tgstation_8_server_8_host_2_models_2_test_merge_8cs.html
index 761023f842..77d9fb6e1b 100644
--- a/_tgstation_8_server_8_host_2_models_2_test_merge_8cs.html
+++ b/_tgstation_8_server_8_host_2_models_2_test_merge_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_test_merge_8cs_source.html b/_tgstation_8_server_8_host_2_models_2_test_merge_8cs_source.html
index 934cfb9c08..315af29003 100644
--- a/_tgstation_8_server_8_host_2_models_2_test_merge_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_models_2_test_merge_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_user_8cs.html b/_tgstation_8_server_8_host_2_models_2_user_8cs.html
index 911035dc1f..e90df69c77 100644
--- a/_tgstation_8_server_8_host_2_models_2_user_8cs.html
+++ b/_tgstation_8_server_8_host_2_models_2_user_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_models_2_user_8cs_source.html b/_tgstation_8_server_8_host_2_models_2_user_8cs_source.html
index f01e570b15..15bc12a13f 100644
--- a/_tgstation_8_server_8_host_2_models_2_user_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_models_2_user_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_properties_2_assembly_info_8cs.html b/_tgstation_8_server_8_host_2_properties_2_assembly_info_8cs.html
index 2746bccf3e..0479683221 100644
--- a/_tgstation_8_server_8_host_2_properties_2_assembly_info_8cs.html
+++ b/_tgstation_8_server_8_host_2_properties_2_assembly_info_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_2_properties_2_assembly_info_8cs_source.html b/_tgstation_8_server_8_host_2_properties_2_assembly_info_8cs_source.html
index 4b335bd712..b1928b5998 100644
--- a/_tgstation_8_server_8_host_2_properties_2_assembly_info_8cs_source.html
+++ b/_tgstation_8_server_8_host_2_properties_2_assembly_info_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_8_console_2_assembly_info_8cs.html b/_tgstation_8_server_8_host_8_console_2_assembly_info_8cs.html
index d95d8e57d4..3024cf94e6 100644
--- a/_tgstation_8_server_8_host_8_console_2_assembly_info_8cs.html
+++ b/_tgstation_8_server_8_host_8_console_2_assembly_info_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_8_console_2_assembly_info_8cs_source.html b/_tgstation_8_server_8_host_8_console_2_assembly_info_8cs_source.html
index c7a857eacc..03d9e8ec0f 100644
--- a/_tgstation_8_server_8_host_8_console_2_assembly_info_8cs_source.html
+++ b/_tgstation_8_server_8_host_8_console_2_assembly_info_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_8_service_2_properties_2_assembly_info_8cs.html b/_tgstation_8_server_8_host_8_service_2_properties_2_assembly_info_8cs.html
index d5fb672946..c43f48169e 100644
--- a/_tgstation_8_server_8_host_8_service_2_properties_2_assembly_info_8cs.html
+++ b/_tgstation_8_server_8_host_8_service_2_properties_2_assembly_info_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_8_service_2_properties_2_assembly_info_8cs_source.html b/_tgstation_8_server_8_host_8_service_2_properties_2_assembly_info_8cs_source.html
index 26e50e8b63..0845edc8c6 100644
--- a/_tgstation_8_server_8_host_8_service_2_properties_2_assembly_info_8cs_source.html
+++ b/_tgstation_8_server_8_host_8_service_2_properties_2_assembly_info_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_8_watchdog_2_assembly_info_8cs.html b/_tgstation_8_server_8_host_8_watchdog_2_assembly_info_8cs.html
index e334458b5c..aba9bc0cfa 100644
--- a/_tgstation_8_server_8_host_8_watchdog_2_assembly_info_8cs.html
+++ b/_tgstation_8_server_8_host_8_watchdog_2_assembly_info_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_tgstation_8_server_8_host_8_watchdog_2_assembly_info_8cs_source.html b/_tgstation_8_server_8_host_8_watchdog_2_assembly_info_8cs_source.html
index 07eb4e3e12..e49a9803ff 100644
--- a/_tgstation_8_server_8_host_8_watchdog_2_assembly_info_8cs_source.html
+++ b/_tgstation_8_server_8_host_8_watchdog_2_assembly_info_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_token_8cs.html b/_token_8cs.html
index 0ab05aae2a..026529bdcb 100644
--- a/_token_8cs.html
+++ b/_token_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_token_8cs_source.html b/_token_8cs_source.html
index 356329c00b..c3a85bb14f 100644
--- a/_token_8cs_source.html
+++ b/_token_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_token_factory_8cs.html b/_token_factory_8cs.html
index 0f8c68e434..861b1ca1b6 100644
--- a/_token_factory_8cs.html
+++ b/_token_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_token_factory_8cs_source.html b/_token_factory_8cs_source.html
index 2fffcd42f0..b7a4e02d7f 100644
--- a/_token_factory_8cs_source.html
+++ b/_token_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_topic_command_type_8cs.html b/_topic_command_type_8cs.html
index d32853b6fe..4fd1fb5649 100644
--- a/_topic_command_type_8cs.html
+++ b/_topic_command_type_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_topic_command_type_8cs_source.html b/_topic_command_type_8cs_source.html
index ecf58b6e3f..12ffbe93cb 100644
--- a/_topic_command_type_8cs_source.html
+++ b/_topic_command_type_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_topic_parameters_8cs.html b/_topic_parameters_8cs.html
index c67811feab..6eec6236bb 100644
--- a/_topic_parameters_8cs.html
+++ b/_topic_parameters_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_topic_parameters_8cs_source.html b/_topic_parameters_8cs_source.html
index 12a9b12fdb..66866e9408 100644
--- a/_topic_parameters_8cs_source.html
+++ b/_topic_parameters_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_topic_response_8cs.html b/_topic_response_8cs.html
index 97d937592d..81d8922a27 100644
--- a/_topic_response_8cs.html
+++ b/_topic_response_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_topic_response_8cs_source.html b/_topic_response_8cs_source.html
index f665d3a5af..1f3969cc14 100644
--- a/_topic_response_8cs_source.html
+++ b/_topic_response_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_unauthorized_exception_8cs.html b/_unauthorized_exception_8cs.html
index 4675470a43..81a6120f6b 100644
--- a/_unauthorized_exception_8cs.html
+++ b/_unauthorized_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_unauthorized_exception_8cs_source.html b/_unauthorized_exception_8cs_source.html
index b9a9c199e8..b558d705c8 100644
--- a/_unauthorized_exception_8cs_source.html
+++ b/_unauthorized_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_unrecognized_response_exception_8cs.html b/_unrecognized_response_exception_8cs.html
index 1a589e6b23..510d33e033 100644
--- a/_unrecognized_response_exception_8cs.html
+++ b/_unrecognized_response_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_unrecognized_response_exception_8cs_source.html b/_unrecognized_response_exception_8cs_source.html
index f30c23c83c..adbbb8dfef 100644
--- a/_unrecognized_response_exception_8cs_source.html
+++ b/_unrecognized_response_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_updates_configuration_8cs.html b/_updates_configuration_8cs.html
index 6e73eaf45f..b1f239d815 100644
--- a/_updates_configuration_8cs.html
+++ b/_updates_configuration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_updates_configuration_8cs_source.html b/_updates_configuration_8cs_source.html
index 9977c3c7a3..f329812019 100644
--- a/_updates_configuration_8cs_source.html
+++ b/_updates_configuration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_user_controller_8cs.html b/_user_controller_8cs.html
index 1eb7db3379..1597cef41e 100644
--- a/_user_controller_8cs.html
+++ b/_user_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_user_controller_8cs_source.html b/_user_controller_8cs_source.html
index a21da041a7..c60f9f3445 100644
--- a/_user_controller_8cs_source.html
+++ b/_user_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_user_update_8cs.html b/_user_update_8cs.html
index 33010f47be..5d835bf611 100644
--- a/_user_update_8cs.html
+++ b/_user_update_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_user_update_8cs_source.html b/_user_update_8cs_source.html
index c35b2d13e9..d6c361c132 100644
--- a/_user_update_8cs_source.html
+++ b/_user_update_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_users_client_8cs.html b/_users_client_8cs.html
index e734c37beb..ff25002b94 100644
--- a/_users_client_8cs.html
+++ b/_users_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_users_client_8cs_source.html b/_users_client_8cs_source.html
index 7695677e98..642dd1659f 100644
--- a/_users_client_8cs_source.html
+++ b/_users_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_version_command_8cs.html b/_version_command_8cs.html
index dd8f2a42cb..7dbfe7b597 100644
--- a/_version_command_8cs.html
+++ b/_version_command_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_version_command_8cs_source.html b/_version_command_8cs_source.html
index dcefb82a81..d31e251288 100644
--- a/_version_command_8cs_source.html
+++ b/_version_command_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_version_converter_8cs.html b/_version_converter_8cs.html
index e92d63100c..ed5ab9c1c9 100644
--- a/_version_converter_8cs.html
+++ b/_version_converter_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_version_converter_8cs_source.html b/_version_converter_8cs_source.html
index 53757cbbfc..f6a9690e35 100644
--- a/_version_converter_8cs_source.html
+++ b/_version_converter_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_version_extensions_8cs.html b/_version_extensions_8cs.html
index f1ecae465c..c2131758fc 100644
--- a/_version_extensions_8cs.html
+++ b/_version_extensions_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_version_extensions_8cs_source.html b/_version_extensions_8cs_source.html
index 2b739cbb1e..77cb4037d9 100644
--- a/_version_extensions_8cs_source.html
+++ b/_version_extensions_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_version_mismatch_exception_8cs.html b/_version_mismatch_exception_8cs.html
index 07986e74b4..2ea629777c 100644
--- a/_version_mismatch_exception_8cs.html
+++ b/_version_mismatch_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_version_mismatch_exception_8cs_source.html b/_version_mismatch_exception_8cs_source.html
index f886276f31..2fd305d841 100644
--- a/_version_mismatch_exception_8cs_source.html
+++ b/_version_mismatch_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_watchdog_2_i_watchdog_8cs.html b/_watchdog_2_i_watchdog_8cs.html
index aea8fe1003..c1843ef7d0 100644
--- a/_watchdog_2_i_watchdog_8cs.html
+++ b/_watchdog_2_i_watchdog_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_watchdog_2_i_watchdog_8cs_source.html b/_watchdog_2_i_watchdog_8cs_source.html
index 000acf5915..ccde60233c 100644
--- a/_watchdog_2_i_watchdog_8cs_source.html
+++ b/_watchdog_2_i_watchdog_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_watchdog_2_i_watchdog_factory_8cs.html b/_watchdog_2_i_watchdog_factory_8cs.html
index 07f1de3da0..1d04d2733c 100644
--- a/_watchdog_2_i_watchdog_factory_8cs.html
+++ b/_watchdog_2_i_watchdog_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_watchdog_2_i_watchdog_factory_8cs_source.html b/_watchdog_2_i_watchdog_factory_8cs_source.html
index 39b87b4dc3..8f6f0016c6 100644
--- a/_watchdog_2_i_watchdog_factory_8cs_source.html
+++ b/_watchdog_2_i_watchdog_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_watchdog_2_watchdog_factory_8cs.html b/_watchdog_2_watchdog_factory_8cs.html
index 5b7f120c44..ba11ad24dd 100644
--- a/_watchdog_2_watchdog_factory_8cs.html
+++ b/_watchdog_2_watchdog_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_watchdog_2_watchdog_factory_8cs_source.html b/_watchdog_2_watchdog_factory_8cs_source.html
index 70c393a364..6c4d39c86e 100644
--- a/_watchdog_2_watchdog_factory_8cs_source.html
+++ b/_watchdog_2_watchdog_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_watchdog_8cs.html b/_watchdog_8cs.html
index b35e58ee22..5ed1e6ee04 100644
--- a/_watchdog_8cs.html
+++ b/_watchdog_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_watchdog_8cs_source.html b/_watchdog_8cs_source.html
index a55be3ddbf..a5098df2af 100644
--- a/_watchdog_8cs_source.html
+++ b/_watchdog_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_watchdog_base_8cs.html b/_watchdog_base_8cs.html
index 2ea92a6cba..b7a2a0a176 100644
--- a/_watchdog_base_8cs.html
+++ b/_watchdog_base_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
diff --git a/_watchdog_base_8cs_source.html b/_watchdog_base_8cs_source.html
index dbfeae9b28..a16035424d 100644
--- a/_watchdog_base_8cs_source.html
+++ b/_watchdog_base_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.2.6
+ 4.2.7
The /tg/station 13 server suite
|
@@ -94,9 +94,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
WatchdogBase.cs