From 5ffcb28251b96e2e1447d860296bb50185526eaa Mon Sep 17 00:00:00 2001 From: Chris Kearney <chris.kearney@vevo.com> Date: Wed, 10 Aug 2016 10:21:32 -0700 Subject: [PATCH] bug here, forgot to migrate this command apparently --- .../comandante/creeper/command/admin/BuildCommand.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/comandante/creeper/command/admin/BuildCommand.java b/src/main/java/com/comandante/creeper/command/admin/BuildCommand.java index 1ae0f18b..df593275 100644 --- a/src/main/java/com/comandante/creeper/command/admin/BuildCommand.java +++ b/src/main/java/com/comandante/creeper/command/admin/BuildCommand.java @@ -26,8 +26,7 @@ public class BuildCommand extends Command { @Override public synchronized void messageReceived(ChannelHandlerContext ctx, MessageEvent e) throws Exception { - ; - try { + execCommand(ctx, e, () -> { if (originalMessageParts.size() > 1) { String desiredBuildDirection = originalMessageParts.get(1); if (desiredBuildDirection.equalsIgnoreCase("notable")) { @@ -118,10 +117,7 @@ public class BuildCommand extends Command { } channelUtils.write(playerId, "Room already exists at that location."); } - } finally { - super.messageReceived(ctx, e); - } - + }); } private FloorModel newFloorModel(Integer floorId, Integer newRoomId, Integer currentRoomId, RemoteExit remoteExit) { -- GitLab