mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
Fix typo in MainWindow.cs
verison -> version
This commit is contained in:
parent
16f907b358
commit
ca07e9bf5b
@ -44,11 +44,11 @@ namespace VPet_Simulator.Windows
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 版本号
|
/// 版本号
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int verison { get; } = 101;
|
public int version { get; } = 101;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 版本号
|
/// 版本号
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Verison => $"{verison / 100}.{verison % 100}";
|
public string Version => $"{version / 100}.{version % 100}";
|
||||||
|
|
||||||
public List<LowText> LowFoodText { get; set; } = new List<LowText>();
|
public List<LowText> LowFoodText { get; set; } = new List<LowText>();
|
||||||
|
|
||||||
@ -632,7 +632,7 @@ namespace VPet_Simulator.Windows
|
|||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.Append("action=data");
|
sb.Append("action=data");
|
||||||
sb.Append($"&steamid={Steamworks.SteamClient.SteamId.Value}");
|
sb.Append($"&steamid={Steamworks.SteamClient.SteamId.Value}");
|
||||||
sb.Append($"&ver={verison}");
|
sb.Append($"&ver={version}");
|
||||||
sb.Append("&save=");
|
sb.Append("&save=");
|
||||||
sb.AppendLine(HttpUtility.UrlEncode(Core.Save.ToLine().ToString() + Set.ToString()));
|
sb.AppendLine(HttpUtility.UrlEncode(Core.Save.ToLine().ToString() + Set.ToString()));
|
||||||
//游戏设置比存档更重要,桌宠大部分内容存设置里了,所以一起上传
|
//游戏设置比存档更重要,桌宠大部分内容存设置里了,所以一起上传
|
||||||
|
Loading…
Reference in New Issue
Block a user