Skip to content

Commit

Permalink
Fix /clear not completing clearing chat for people who use 30 chatlin…
Browse files Browse the repository at this point in the history
…es (thanks aleksb385)
  • Loading branch information
UnknownShadow200 committed Feb 28, 2021
1 parent 07881b8 commit 898b4c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MCGalaxy/Commands/Chat/CmdClear.cs
Expand Up @@ -46,7 +46,7 @@ public sealed class CmdClear : Command2 {
}

static void ClearChat(Player p) {
for (int i = 0; i < 20; i++) {
for (int i = 0; i < 30; i++) {
p.Send(Packet.BlankMessage());
}
}
Expand Down

0 comments on commit 898b4c7

Please sign in to comment.