3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-06 16:12:51 +02:00

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
Dieser Commit ist enthalten in:
dordsor21 2021-11-10 22:13:44 +00:00
Ursprung f04e891e0c
Commit 806ea14ad2
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 1E53E88969FFCF0B

Datei anzeigen

@ -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
}