Go to file
Jordach 8571062e60 Merge branch 'master' of https://github.com/Jordach/Solar_Plains 2019-05-18 00:45:09 +01:00
blends add new textures, new frameworks 2019-02-20 22:17:49 +00:00
extras add new textures, new frameworks 2019-02-20 22:17:49 +00:00
menu make the sun look a little bit better than before 2017-11-26 22:11:52 +00:00
mods Merge branch 'master' of https://github.com/Jordach/Solar_Plains 2019-05-18 00:45:09 +01:00
ntex work in progress farming system 2018-11-06 15:13:35 +00:00
.gitignore upgrade atmos2 to prevent even more memory leakage 2018-08-04 17:08:40 +01:00
.luacheckrc Add luacheckrc to the repo 2018-09-12 22:20:19 +01:00
.travis.yml enable travis and uh new things™️ 2018-09-12 22:15:04 +01:00
README.md add details with a warning about processor requirements 2018-08-01 00:10:08 +01:00
game.conf Fix issues with Waila crashes temporarily 2019-05-18 00:43:08 +01:00
minetest.conf new tree and biomey changes 2018-09-18 17:37:20 +01:00
privacy-doc.txt happy little git push, new textures 2018-12-04 13:07:13 +00:00

README.md

Solar_Plains

Performance Issues:

Please note, Solar Plains requires the server to be as recent as Intel's HASWELL processors, starting at model 4250U.

For clients connecting to a server, this requirement is lower, anything as recent as the Intel Core 2 Quad should be capable of running this game fine, as either singleplayer or client.

Code Styling:

Use tabs - any editor can configure a single tab into X amount of spaces.

Keep it simple and modular - if it stops working in one version but works in another; it's entirely replaceable.

If you're struggling with that, write the logic flow into smaller steps on paper first; you'll see how much of a difference it makes.

Use each mod's namespace for functions; you may never know when another item implements something similar.

Try and reuse code whenever possible. Beds is an example that shows that this is possible.