Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: ServerTools resetApi request error
  • Loading branch information
Controllerdestiny committed Dec 25, 2024
commit 4d474c99b3c45193cffc8e14dc0f308d62762187
6 changes: 3 additions & 3 deletions src/ServerTools/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public partial class Plugin : TerrariaPlugin

public override string Name => "ServerTools";// 插件名字

public override Version Version => new Version(1, 1, 7, 10);// 插件版本
public override Version Version => new Version(1, 1, 8, 0);// 插件版本

private static Config Config = new();

Expand Down Expand Up @@ -288,8 +288,8 @@ public static void RestPlayerCtor(Action<TSRestPlayer, string, TShockAPI.Group>
{
self.Account = new()
{
Name = self.Name,
Group = self.Group.Name,
Name = name,
Group = group.Name,
ID = self.Index
};
orig(self, name, group);
Expand Down