From 834a6979be68a38e6a1c3e481cc35be584855019 Mon Sep 17 00:00:00 2001 From: Kazuhiro Fujieda Date: Thu, 2 May 2019 21:57:43 +0900 Subject: [PATCH] =?utf8?q?CSV=E5=BD=A2=E5=BC=8F=E3=81=AB=E6=AC=A1=E3=81=AE?= =?utf8?q?=E3=83=AC=E3=83=99=E3=83=AB=E3=81=BE=E3=81=A7=E3=81=AE=E7=B5=8C?= =?utf8?q?=E9=A8=93=E5=80=A4=E3=82=92=E5=8A=A0=E3=81=88=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- KancolleSniffer/TextGenerator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KancolleSniffer/TextGenerator.cs b/KancolleSniffer/TextGenerator.cs index 08841b7..04ab794 100644 --- a/KancolleSniffer/TextGenerator.cs +++ b/KancolleSniffer/TextGenerator.cs @@ -23,11 +23,11 @@ namespace KancolleSniffer public static class TextGenerator { public static string GenerateShipList(IEnumerable shipList) - => "ID,艦種,艦名,レベル,cond,素対潜\r\n" + + => "ID,艦種,艦名,レベル,ExpToNext,cond,素対潜\r\n" + string.Join("\r\n", from ship in shipList orderby ship.Spec.ShipType, -ship.Level, ship.ExpToNext - select $"{ship.Id},{ship.Spec.ShipTypeName},{ship.Name},{ship.Level},{ship.Cond},{ship.ShipAntiSubmarine}"); + select $"{ship.Id},{ship.Spec.ShipTypeName},{ship.Name},{ship.Level},{ship.ExpToNext},{ship.Cond},{ship.ShipAntiSubmarine}"); // ReSharper disable IdentifierTypo public static string GenerateKantaiSarashiData(IEnumerable shipList) -- 2.11.0