Cadiboo / Example-Mod

An example mod created to try and get new modders to use good code practices
GNU Lesser General Public License v3.0
194 stars 41 forks source link

Populating Ores #16

Closed elizabethlfransen closed 4 years ago

elizabethlfransen commented 4 years ago

Would you be able to add an example of populating the world with example_ore?

kwpugh commented 4 years ago

I originally used the example mod to create my Easy Steel mod. I had to scrape around the web to figure out the ore gen part in 1.14.4.

My source code for ore gen is pretty straightforward.

https://github.com/kwpugh/easy_steel/tree/1.14/src/main/java/com/kwpugh/easy_steel

There are three parts:

Hope that helps you.

Regards

elizabethlfransen commented 4 years ago

Thank you, your source code is very helpful!