CHANGED:
- Changed the syntax for BlockData when running Skript 2.5-beta1+ due to Skript adding its own block data system
Old:
Code (Text):
block[ ](data|state) [(tags|tag %-string%|without update[s])]"
New:
The part within the parenthesis is no longer optional. (Again, only on Skript 2.5-beta1+)
Code (Text):
block[ ](data|state) (tags|tag %-string%|without update[s])"
If using Skript 2.5-beta1+ simply remove the quotes around your block data and replace commas with a semi colon,
example:
Code (Text):
#from
set block data of target block to "campfire[lit=false,waterlogged=true]"
#to
set block data of target block to campfire[lit=false;waterlogged=true]