From 1fa9c66f37174427a81c16817315a51258d2a518 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sat, 2 Sep 2017 11:58:19 +1000 Subject: [PATCH] Mark doesn't show anything when /ignore drawoutput is on. --- MCGalaxy/Commands/building/CmdMark.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MCGalaxy/Commands/building/CmdMark.cs b/MCGalaxy/Commands/building/CmdMark.cs index d65e6a991..e8a8540d5 100644 --- a/MCGalaxy/Commands/building/CmdMark.cs +++ b/MCGalaxy/Commands/building/CmdMark.cs @@ -103,6 +103,7 @@ namespace MCGalaxy.Commands.Building { static void PlaceMark(Player p, int x, int y, int z) { ExtBlock block = p.GetHeldBlock(); p.ManualChange((ushort)x, (ushort)y, (ushort)z, false, block, false); + if (p.Ignores.DrawOutput) return; Player.Message(p, "Mark placed at &b({0}, {1}, {2})", x, y, z); }