diff --git a/RestartManager/scripting/RestartManager.sp b/RestartManager/scripting/RestartManager.sp index 0128c37a..ad4505a2 100644 --- a/RestartManager/scripting/RestartManager.sp +++ b/RestartManager/scripting/RestartManager.sp @@ -351,7 +351,7 @@ public void GetUptimeIfControlledRestart() { File UptimeFile = OpenFile("uptime.txt", "r"); - if(UptimeFile != null)//Server was restarted automatically by this plugin + if(UptimeFile != null)//Server was restarted automatically by this plugin or an admin { char sUptime[64]; UptimeFile.ReadLine(sUptime, sizeof(sUptime)); @@ -360,7 +360,7 @@ public void GetUptimeIfControlledRestart() DeleteFile("uptime.txt"); } else//Server crashed or restarted manually - LogToFile("addons/sourcemod/logs/restarts.log", "Server crashed or was restarted manually."); + LogToFile("addons/sourcemod/logs/restarts.log", "Server crashed."); } //----------------------------------------------------------------------------------------------------