NavidK0 / Carbon

Carbon is a Spigot plugin which turns a spigot protocol hacked server (on 1.7.10) into a 1.8 server.
GNU Lesser General Public License v3.0
35 stars 19 forks source link

Format to add world to config #191

Closed xmcnuggsx closed 10 years ago

xmcnuggsx commented 10 years ago

What is the proper format to add a world into the carbon config file? I have tried it several ways and still cannot manage to generate a world with 1.8 blocks. I will troubleshoot conflicting plug-ins once I know I have the config set up properly. Everything else other than the world-gen is working great for me. Thanks.

Shevchik commented 10 years ago

It is a YAML list.

Jikoo commented 10 years ago

YAML lists are formatted list: [item, item, item] or

list:
- item
- item
- item

Either will work.

xmcnuggsx commented 10 years ago

Great, thanks guys!