From 475791b12e1e6a9e30a9d73aaaf864a45d97b4d7 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Wed, 14 Sep 2016 23:09:02 +1000 Subject: [PATCH] Fix /outline. (Thanks prismaaa) --- Commands/building/CmdOutline.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Commands/building/CmdOutline.cs b/Commands/building/CmdOutline.cs index f9422761e..784ba8398 100644 --- a/Commands/building/CmdOutline.cs +++ b/Commands/building/CmdOutline.cs @@ -38,7 +38,7 @@ namespace MCGalaxy.Commands.Building { int newBlock = DrawCmd.GetBlock(p, args[1], out dArgs.newExtBlock); if (newBlock == -1) return; - dArgs.newBlock = (byte)block; + dArgs.newBlock = (byte)newBlock; Player.Message(p, "Place two blocks to determine the edges."); p.MakeSelection(2, dArgs, DoOutline);