From 347b1ed4125c0d8a81fbcdede4d82c8d2c3adf92 Mon Sep 17 00:00:00 2001 From: AWildTeddyBear <28819241+AWildTeddyBear@users.noreply.github.com> Date: Thu, 29 Nov 2018 06:43:03 -0600 Subject: [PATCH] Missing semicolon fix for communityofflineserver.c (#11) Fix for: SCRIPT (W): @"com/DayZ-SA-Tomato/scripts/5_Mission/core\communityofflineserver.c,162": Missing ';' at the end of line SCRIPT (W): @"com/DayZ-SA-Tomato/scripts/5_Mission/core\communityofflineserver.c,185": Missing ';' at the end of line --- .../scripts/5_Mission/core/CommunityOfflineServer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DayZ-Sa-Tomato/addons/DayZ-SA-Tomato/scripts/5_Mission/core/CommunityOfflineServer.c b/DayZ-Sa-Tomato/addons/DayZ-SA-Tomato/scripts/5_Mission/core/CommunityOfflineServer.c index 5b36526..af6c220 100644 --- a/DayZ-Sa-Tomato/addons/DayZ-SA-Tomato/scripts/5_Mission/core/CommunityOfflineServer.c +++ b/DayZ-Sa-Tomato/addons/DayZ-SA-Tomato/scripts/5_Mission/core/CommunityOfflineServer.c @@ -159,7 +159,7 @@ class CommunityOfflineServer : MissionServer vector pos; pos = currentPlayer.GetPosition(); - CLogDebug("CommunityOfflineServer - SendPosTOAdmins1/2() - Name :" + PlayerName + "pos : " + pos) + CLogDebug("CommunityOfflineServer - SendPosTOAdmins1/2() - Name :" + PlayerName + "pos : " + pos); //SendPosToAdmins(PlayerName, pos); m_currentPlayer1++; @@ -182,7 +182,7 @@ class CommunityOfflineServer : MissionServer PlayerSteam64ID1 = AdminIdent1.GetPlainId(); if (IsAdmin(AdminPlayerName1, PlayerSteam64ID1 )) { - CLogDebug("CommunityOfflineServer - SendPosTOAdmins2/2() - Name :" + PlayerName + "pos : " + pos) + CLogDebug("CommunityOfflineServer - SendPosTOAdmins2/2() - Name :" + PlayerName + "pos : " + pos); ScriptRPC PPos = new ScriptRPC(); PPos.Write(PlayerName); PPos.Write(pos); @@ -542,4 +542,4 @@ class CommunityOfflineServer : MissionServer oHive.InitOffline(); } } -} \ No newline at end of file +}