More Changes

This commit is contained in:
Wrexbe
2021-12-05 10:56:17 -08:00
parent 2a3b7d809d
commit b9dd3be061
45 changed files with 140 additions and 140 deletions

View File

@@ -102,7 +102,7 @@ namespace Content.Server.Light.Components
/// Illuminates the light if it is not active, extinguishes it if it is active.
/// </summary>
/// <returns>True if the light's status was toggled, false otherwise.</returns>
public bool ToggleStatus(EntityUiduser)
public bool ToggleStatus(EntityUid user)
{
if (!EntitySystem.Get<ActionBlockerSystem>().CanUse(user)) return false;
return Activated ? TurnOff() : TurnOn(user);
@@ -128,7 +128,7 @@ namespace Content.Server.Light.Components
return true;
}
public bool TurnOn(EntityUiduser)
public bool TurnOn(EntityUid user)
{
if (Activated)
{