Core/Misc: Some missed $ for string interpolation and some cleanups to code.

This commit is contained in:
hondacrx
2021-01-14 20:50:44 -05:00
parent b503b842d6
commit fa689dac1e
10 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -674,7 +674,7 @@ namespace Game
// prevent tampered movement data
if (setModMovementForceMagnitudeAck.Ack.Status.Guid != mover.GetGUID())
{
Log.outError(LogFilter.Network, "HandleSetModMovementForceMagnitudeAck: guid error, expected {mover.GetGUID().ToString()}, got {setModMovementForceMagnitudeAck.Ack.Status.guid.ToString()}");
Log.outError(LogFilter.Network, $"HandleSetModMovementForceMagnitudeAck: guid error, expected {mover.GetGUID()}, got {setModMovementForceMagnitudeAck.Ack.Status.Guid}");
return;
}