Tiny admin log slip message fix. (#5719)

This commit is contained in:
pointer-to-null
2021-12-08 01:49:17 +03:00
committed by GitHub
parent 1d73db3a12
commit 0109aa804c

View File

@@ -107,7 +107,7 @@ namespace Content.Shared.Slippery
PlaySound(component); PlaySound(component);
} }
_adminLog.Add(LogType.Slip, LogImpact.Low, $"{component.Owner} slipped on collision with {otherBody.Owner}"); _adminLog.Add(LogType.Slip, LogImpact.Low, $"{otherBody.Owner} slipped on collision with {component.Owner}");
return true; return true;
} }