mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
reference: file //ngroups under statistics, not meta
This commit is contained in:
parent
490db59843
commit
3c619ed71a
1 changed files with 36 additions and 36 deletions
|
@ -926,6 +926,42 @@ Returns the absolute canonical name of a node, given an alias or partial node na
|
|||
```
|
||||
|
||||
|
||||
### `//ngroups <node_name> [v[erbose]]`
|
||||
Lists the groups that a given node is a member of. For example:
|
||||
|
||||
```weacmd
|
||||
//ngroups sand
|
||||
```
|
||||
|
||||
Might return:
|
||||
|
||||
```
|
||||
default:sand ∈ sand crumbly falling_node
|
||||
```
|
||||
|
||||
Groups in Minetest can also have a numerical value greater than 0. Append `v` or `verbose` to see those values:
|
||||
|
||||
```weacmd
|
||||
//ngroups sand v
|
||||
//ngroups sand verbose
|
||||
```
|
||||
|
||||
...both of the above might produce an output like this:
|
||||
|
||||
```
|
||||
default:sand ∈ sand=1 crumbly=3 falling_node=1
|
||||
```
|
||||
|
||||
Finally, the customary misc examples:
|
||||
|
||||
```weacmd
|
||||
//ngroups sand
|
||||
//ngroups bakedclay:orange v
|
||||
//ngroups cactus
|
||||
//ngroups default:dry_shrub v
|
||||
```
|
||||
|
||||
|
||||
|
||||
## Selection
|
||||
<!--
|
||||
|
@ -1401,42 +1437,6 @@ This command is intended for development and modding. You will not normally need
|
|||
```
|
||||
|
||||
|
||||
### `//ngroups <node_name> [v[erbose]]`
|
||||
Lists the groups that a given node is a member of. For example:
|
||||
|
||||
```weacmd
|
||||
//ngroups sand
|
||||
```
|
||||
|
||||
Might return:
|
||||
|
||||
```
|
||||
default:sand ∈ sand crumbly falling_node
|
||||
```
|
||||
|
||||
Groups in Minetest can also have a numerical value greater than 0. Append `v` or `verbose` to see those values:
|
||||
|
||||
```weacmd
|
||||
//ngroups sand v
|
||||
//ngroups sand verbose
|
||||
```
|
||||
|
||||
...both of the above might produce an output like this:
|
||||
|
||||
```
|
||||
default:sand ∈ sand=1 crumbly=3 falling_node=1
|
||||
```
|
||||
|
||||
Finally, the customary misc examples:
|
||||
|
||||
```weacmd
|
||||
//ngroups sand
|
||||
//ngroups bakedclay:orange v
|
||||
//ngroups cactus
|
||||
//ngroups default:dry_shrub v
|
||||
```
|
||||
|
||||
|
||||
## Extras
|
||||
<!--
|
||||
███████ ██ ██ ████████ ██████ █████ ███████
|
||||
|
|
Loading…
Reference in a new issue