Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tomrus88 committed May 27, 2016
1 parent b772f19 commit 53bad5a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ExportFileDataAsLuaTable/FileDataLuaExporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ public class FileDataLuaExporter : IPlugin

public void Run(DataTable table)
{

using (var sw = new StreamWriter("interfacefiledata.txt"))
{
foreach (DataRow row in table.Rows)
{
sw.WriteLine("{0}{1}", row[1], row[2]);
}
}
}

public void Run(IClientDBReader table)
Expand Down

0 comments on commit 53bad5a

Please sign in to comment.