Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions source/permissions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -228,3 +228,10 @@ Other Permissions
``worldedit.setnbt``,"Allows setting `extra data <https://minecraft.wiki/w/Block_entity>`_ on blocks (such as signs, chests, etc)."
``worldedit.report.pastebin``,"Allows uploading report files to pastebin automatically for the ``/worldedit report`` :doc:`command <commands>`."
``worldedit.scripting.execute.<filename>``,"Allows using the CraftScript with the given filename."

.. note::
Due to a limitation of the Fabric Permissions API, some filename permissions for ``worldedit.scripting.execute.<filename>`` need to be converted before use.

If your filename contains any uppercase letters, the permission must be done lowercase. For any non-alphanumerical characters other than ``-``, ``/``, and ``.``,
you must replace the character with ``_00`` where 00 is replaced by the "HEX" entry for that character on `this table <https://www.ascii-code.com/>`_. We hope this
limitation in Fabric can be resolved in the future to remove the need for this workaround.