diff --git a/Library/Main.cs b/Library/Main.cs index dc4bb91..a8f9842 100644 --- a/Library/Main.cs +++ b/Library/Main.cs @@ -5,6 +5,7 @@ using Milimoe.FunGame.Core.Entity; using Milimoe.FunGame.Core.Library.Constant; using Milimoe.FunGame.Testing.Tests; using Oshima.FunGame.OshimaModules; +using Oshima.FunGame.OshimaModules.Regions; using Oshima.FunGame.OshimaServers.Service; using Oshima.FunGame.WebAPI.Controllers; @@ -97,6 +98,11 @@ foreach (Item i in FunGameConstant.Equipment) Console.WriteLine(builder.ToString()); } Console.ReadKey(); +foreach (OshimaRegion region in FunGameConstant.Regions.Union(FunGameConstant.PlayerRegions)) +{ + Console.WriteLine(region.ToString()); +} +Console.ReadKey(); //Dictionary rounds = FunGameSimulation.ReadRoundsFromZip("rounds_archive.zip") ?? []; //Console.WriteLine(rounds.Count); diff --git a/Library/Tests/FunGame.cs b/Library/Tests/FunGame.cs index 649be2d..b5e2aa2 100644 --- a/Library/Tests/FunGame.cs +++ b/Library/Tests/FunGame.cs @@ -126,23 +126,23 @@ namespace Milimoe.FunGame.Testing.Tests WriteLine(""); if (isWeb) result.Add("=== 空投 ===\r\n" + Msg); double nextDropItemTime = 40; - if (qMagicCardPack < 4) + if (qMagicCardPack < 5) { qMagicCardPack++; } - if (qWeapon < 4) + if (qWeapon < 5) { qWeapon++; } - if (qArmor < 1) + if (qArmor < 5) { qArmor++; } - if (qShoes < 1) + if (qShoes < 5) { qShoes++; } - if (qAccessory < 3) + if (qAccessory < 5) { qAccessory++; } @@ -258,23 +258,23 @@ namespace Milimoe.FunGame.Testing.Tests WriteLine(""); if (isWeb) result.Add("=== 空投 ===\r\n" + Msg); nextDropItemTime = 40; - if (qMagicCardPack < 4) + if (qMagicCardPack < 5) { qMagicCardPack++; } - if (qWeapon < 4) + if (qWeapon < 5) { qWeapon++; } - if (qArmor < 1) + if (qArmor < 5) { qArmor++; } - if (qShoes < 1) + if (qShoes < 5) { qShoes++; } - if (qAccessory < 3) + if (qAccessory < 5) { qAccessory++; }