未验证 提交 0a19aabf 编写于 作者: Z ZouJin 提交者: GitHub

Merge pull request #84 from eltociear/main-1

Fix typo
......@@ -34,11 +34,11 @@ namespace VPet_Simulator.Windows.Interface
/// <summary>
/// 版本号
/// </summary>
int verison { get; }
int version { get; }
/// <summary>
/// 版本号
/// </summary>
string Verison { get; }
string Version { get; }
/// <summary>
/// 上次点击时间 (Tick)
/// </summary>
......
......@@ -44,11 +44,11 @@ namespace VPet_Simulator.Windows
/// <summary>
/// 版本号
/// </summary>
public int verison { get; } = 101;
public int version { get; } = 101;
/// <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>();
......@@ -632,7 +632,7 @@ namespace VPet_Simulator.Windows
StringBuilder sb = new StringBuilder();
sb.Append("action=data");
sb.Append($"&steamid={Steamworks.SteamClient.SteamId.Value}");
sb.Append($"&ver={verison}");
sb.Append($"&ver={version}");
sb.Append("&save=");
sb.AppendLine(HttpUtility.UrlEncode(Core.Save.ToLine().ToString() + Set.ToString()));
//游戏设置比存档更重要,桌宠大部分内容存设置里了,所以一起上传
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册