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
This commit is contained in:
AWildTeddyBear 2018-11-29 06:43:03 -06:00 committed by SchnitzelPommes
parent 782458d2f3
commit 347b1ed412

View File

@ -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();
}
}
}
}