Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Arma3TacMapLibrary/Maps/MapExporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ private static List<object> GetMilAsMetis(int id, MarkerData data)
{
return new List<object>()
{
id,
id.ToString(),
data.pos[1],
data.pos[0],
ToIdentify(data.symbol[3]),
Expand All @@ -187,7 +187,7 @@ private static List<object> GetLine(int id, MarkerData data)
points.Add(y);
}
return new List<object>() {
id,
id.ToString(),
points,
Get(data.config, "color", "ColorBlack")};
}
Expand All @@ -197,7 +197,7 @@ private static List<object> GetBasic(int id, MarkerData data)
var dir = Get(data.config, "dir", "");

return new List<object>() {
id,
id.ToString(),
data.pos[1],
data.pos[0],
data.symbol,
Expand Down
Loading