From c86be55717cefea68e497e3566f365b78df446a9 Mon Sep 17 00:00:00 2001 From: raym55 <100526773+piplup55@users.noreply.github.com> Date: Wed, 10 Aug 2022 21:58:06 +0100 Subject: [PATCH 1/3] PIPERS --- Server/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 => { From fa1db280376dc1f4bc5e6f75b3675d734e0c266c Mon Sep 17 00:00:00 2001 From: Piplup <100526773+piplup55@users.noreply.github.com> Date: Sat, 6 Aug 2022 13:48:45 +0100 Subject: [PATCH 2/3] added PersistShines --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 12b931e..d006f7b 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,7 @@ 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 Token: the token of the bot you want to load into, default: null From cee8bd580f23a5869fb7591e11a2b492a2e7a1b2 Mon Sep 17 00:00:00 2001 From: Piplup <100526773+piplup55@users.noreply.github.com> Date: Sat, 6 Aug 2022 14:06:06 +0100 Subject: [PATCH 3/3] cleared up some confusion --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d006f7b..e982eca 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,7 @@ 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