FastAsyncWorldEdit

FastAsyncWorldEdit

245k Downloads

Tag pattern always accepts only one argument

kyojioonaon opened this issue ยท 1 comments

commented

Server Implementation

Paper

Server Version

1.21.4

Describe the bug

When entering material tags, only one argument is ever accepted. This doesn't match the vanilla tag specification.

For instance, in the case of minecraft:chest, the tab completion presents the options 'facing', 'type' and 'waterlogged'.
However, it is not possible to enter all of these at once.

To Reproduce

commands

//set chest[facing=north] # ok
//set chest[type=single] # ok
//set chest[waterlogged=true] # ok
//set chest[facing=north;type=single;waterlogged=true] # not working

Expected behaviour

I believe that the format of the tag string should follow BlockData (from spigot api).

Screenshots / Videos

Image

Error log (if applicable)

No response

Fawe Debugpaste

https://athion.net/ISPaster/paste/view/0c836b8c08934164aed15da72d9706c0

Fawe Version

2.13.1-SNAPSHOT-1062;c8c6484

Checklist

Anything else?

No response

commented

You are using ; instead of ,.