From f6719b4c8b1aedbccb5fcf0d8455b4466805a233 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Wed, 16 Nov 2016 15:28:29 +1100 Subject: [PATCH] Fix double space in /ignore all and /ignore irc. (Thanks Odd0002) --- MCGalaxy/Commands/Chat/CmdIgnore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MCGalaxy/Commands/Chat/CmdIgnore.cs b/MCGalaxy/Commands/Chat/CmdIgnore.cs index 81466c6c1..bce83e450 100644 --- a/MCGalaxy/Commands/Chat/CmdIgnore.cs +++ b/MCGalaxy/Commands/Chat/CmdIgnore.cs @@ -39,11 +39,11 @@ namespace MCGalaxy.Commands { if (action == "all") { p.ignoreAll = !p.ignoreAll; - Player.Message(p, "{0} ignoring all chat", p.ignoreAll ? "&cNow " : "&aNo longer "); + Player.Message(p, "{0} ignoring all chat", p.ignoreAll ? "&cNow" : "&aNo longer"); SaveIgnores(p); return; } else if (action == "irc") { p.ignoreIRC = !p.ignoreIRC; - Player.Message(p, "{0} ignoring IRC chat", p.ignoreIRC ? "&cNow " : "&aNo longer "); + Player.Message(p, "{0} ignoring IRC chat", p.ignoreIRC ? "&cNow" : "&aNo longer"); SaveIgnores(p); return; } else if (action == "titles") { p.ignoreTitles = !p.ignoreTitles;