diff --git a/README.md b/README.md index 12b931e..e982eca 100644 --- a/README.md +++ b/README.md @@ -79,8 +79,10 @@ Maxplayers: the max amount of players that can join, default: 8 Flip: flips the player upside down, defaults: enabled: true, pov: both Scenario: sync's scenario's for all players on the server, default: false Banlist: banned people are unable to join the server, default: false +PersistShines/Moons: Allows the server to remember moon progress across crashes/restarts ### Discord +Note: Token and LogChannel needs to a string puts "" around it Token: the token of the bot you want to load into, default: null Prefix: the bot prefix to be used, default: $ LogChannel: logs the server console to that channel, default: null \ No newline at end of file diff --git a/Server/Program.cs b/Server/Program.cs index a66d887..4fc523d 100644 --- a/Server/Program.cs +++ b/Server/Program.cs @@ -257,7 +257,7 @@ CommandHandler.RegisterCommand("rejoin", args => { var res = MultiUserCommandHelper(args); StringBuilder sb = new StringBuilder(); - sb.Append(res.toActUpon.Count > 0 ? "Banned: " + string.Join(", ", res.toActUpon.Select(x => $"\"{x.Name}\"")) : ""); + sb.Append(res.toActUpon.Count > 0 ? "Rejoined: " + string.Join(", ", res.toActUpon.Select(x => $"\"{x.Name}\"")) : ""); sb.Append(res.failToFind.Count > 0 ? "\nFailed to find matches for: " + string.Join(", ", res.failToFind.Select(x => $"\"{x.ToLower()}\"")) : ""); if (res.ambig.Count > 0) { res.ambig.ForEach(x => { @@ -280,7 +280,7 @@ CommandHandler.RegisterCommand("crash", args => { var res = MultiUserCommandHelper(args); StringBuilder sb = new StringBuilder(); - sb.Append(res.toActUpon.Count > 0 ? "Banned: " + string.Join(", ", res.toActUpon.Select(x => $"\"{x.Name}\"")) : ""); + sb.Append(res.toActUpon.Count > 0 ? "Crashed: " + string.Join(", ", res.toActUpon.Select(x => $"\"{x.Name}\"")) : ""); sb.Append(res.failToFind.Count > 0 ? "\nFailed to find matches for: " + string.Join(", ", res.failToFind.Select(x => $"\"{x.ToLower()}\"")) : ""); if (res.ambig.Count > 0) { res.ambig.ForEach(x => {