Skip to content

Commit

Permalink
Remove \![msg] acting as /msg, this is a relic from long ago in the p…
Browse files Browse the repository at this point in the history
…ast which basically no one uses now
  • Loading branch information
UnknownShadow200 committed Oct 5, 2020
1 parent ba47294 commit 2003a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MCGalaxy/Player/Player.Handlers.cs
Expand Up @@ -516,7 +516,7 @@ public partial class Player : IDisposable {
}
text = lastCMD;
Message("Repeating %T/" + lastCMD);
} else if (text[0] == '/' || text[0] == '!') {
} else if (text[0] == '/') {
text = text.Remove(0, 1);
} else {
return false;
Expand Down

0 comments on commit 2003a89

Please sign in to comment.