From d34fdf00b32117ad10b74c98608015a021feb503 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Thu, 28 Feb 2019 19:47:36 +0100 Subject: [PATCH] Fixed formatting on sending Mission start/Mission end event --- 01_DCS/Hooks/Perun.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01_DCS/Hooks/Perun.lua b/01_DCS/Hooks/Perun.lua index 9d71b65..0d992e1 100644 --- a/01_DCS/Hooks/Perun.lua +++ b/01_DCS/Hooks/Perun.lua @@ -314,11 +314,11 @@ end Perun.onSimulationStart = function() Perun.MissionHash=DCS.getMissionName( ).."@"..os.date('%Y%m%d_%H%M%S'); - Perun.LogEvent("SimStart","Mission" .. Perun.MissionHash .. " started"); + Perun.LogEvent("SimStart","Mission " .. Perun.MissionHash .. " started"); end Perun.onSimulationStop = function() - Perun.LogEvent("SimStop","Mission" .. Perun.MissionHash .. " finished"); + Perun.LogEvent("SimStop","Mission " .. Perun.MissionHash .. " finished"); end Perun.onPlayerDisconnect= function(id, err_code)