croxis / Lift

Minecraft/Bukkit elevator plugin
23 stars 26 forks source link

Elevator Floor Blocks #108

Closed Reaverblade closed 10 years ago

Reaverblade commented 10 years ago

trying to make your lifts recognize multiple blocks as floor blocks. Like, glowstone and glass for instance. I know it already recognizes glass as a floor block, but i wanted to add Glowstone.

Tried: floorBlock: GLASS,GLOWSTONE

but this returns a null error. What, if any, is the correct syntax to let it recognize more than one block?

croxis commented 10 years ago

It needs to be valid yaml syntax for lists:

floorBlocks:
- GLASS
- GLOWSTONE

You might be able to also write it floorBlocks: [GLASS, GLOWSTONE]

Let me know if it doesn't work!

Reaverblade commented 10 years ago

It works with floorBlocks: GLASS FloorBlocks: GLOWSTONE

i'll do it the right way now :P