Interested in having your map added to OresomeCraft Battles? Oresome! Just make sure your pull request follows these guidelines
- Follow the Oracle coding conventions. We can't stress this enough; if your code has notable issues, it may delay the process significantly.
- Target Java 6 for source and compilation.
- Use only spaces for indentation. Our indents are 4-spaces long, and tabs are unacceptable.
- Don't tag classes with messages like 'configured by ', etc
- Test your code. We're not interested in broken code, for the obvious reasons.
- Commits made should always be made in the present tense. For example, "Added ..." is not appriopriate. "Add CastleMap" is appropriate.
Ready to submit? Perform the checklist below:
- Have all tabs been replaced into four spaces? Are indentations 4-space wide?
- Does the code work? Did you follow the guide exactly?
This is GOOD:
if (var.func(param1, param2)) {
// do things
}This is EXTREMELY BAD:
if(var.func( param1, param2 ))
{
// do things
}