Fix actual export file writing (position was at the end when it's not supposed to be).
parent
c687de01de
commit
41375e121a
|
@ -200,6 +200,7 @@ namespace GarrysMod.AddonCreator
|
|||
|
||||
using (var outfile = File.Create(path))
|
||||
{
|
||||
stream.Position = 0;
|
||||
stream.CopyTo(outfile);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue