Skip to content

Commit

Permalink
Fix single edit mode not working
Browse files Browse the repository at this point in the history
  • Loading branch information
Phoenix616 committed Feb 3, 2017
1 parent 3b94cc2 commit adfe1d7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -147,7 +147,7 @@ public boolean onCommand(CommandSender sender, Command cmd, String label, String
}

UUID asid = plugin.getSelection(p);
if (asid == null) {
if (asid != null) {
ArmorStand as = null;
for (Entity e : p.getNearbyEntities(64, 64, 64))
if (e.getType() == EntityType.ARMOR_STAND && e.getUniqueId() == asid) {
Expand Down

0 comments on commit adfe1d7

Please sign in to comment.