can_move

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "can_move".
... in permissions.naml
156
157
158
159
160
161
162
163
164
165
<macro name="can_move" requires="user" dot_parameter="node_attr">
    <n.set_local_user.this_user />
    <n.set_local_node.node_attr/>
    <n.block.>
        <n.both>
            <condition1.not.local_user.is_banned/>
            <condition2.local_user.has_permission node="[n.local_node/]" permission_node="[n.local_node.app_or_root/]" permission="[n.move_permission/]" />
        </n.both>
    </n.block.>
</macro>