Unfix #826 in favour of allowing toggling the wand

- #826 is a pretty niche requirement, usually permissions do not change without a world change, relog, etc. very frequently
 - Allowing //toggleeditwand and /tool none on the wand feels more important
This commit is contained in:
dordsor21 2021-11-10 22:13:44 +00:00
parent f04e891e0c
commit 806ea14ad2
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -1109,14 +1109,7 @@ public class LocalSession implements TextureHolder {
loadDefaults(player, true); // Permissions have changed so redo the player's current tools.
return null;
}
if (tool != null) {
return tool;
} else if (item.getInternalId() == wandItem.getInternalId() && SelectionWand.INSTANCE.canUse(player)) {
loadDefaults(player, true); // Permissions have changed so redo the player's current tools.
return SelectionWand.INSTANCE;
} else {
return null;
}
return tool;
//FAWE end
}