Skip to content
This repository has been archived by the owner on Jan 28, 2023. It is now read-only.

Latest commit

 

History

History
33 lines (30 loc) · 1.69 KB

CONTRIBUTING.md

File metadata and controls

33 lines (30 loc) · 1.69 KB

Contribution Guidelines

WordPress Plugin

If you are not an owner, and would like to contribute to the WordPress plugin please follow these guidelines:

Pull Requests

All Pull requests should be on the dev branch.

Java Contributions

If you are not an owner, and would like to contribute to the Java side of things please follow these guidelines:

  • Ensure are your code is formatted as show below so that everything is on point and because TekkitCommando has OCD xD
public class Main {
    public static void main(String[] args) {
        System.out.println("This is an example");
    }
}

NOT

public class Main 
{
    public static void main(String[] args) 
    {
        System.out.println("This is an example");
    }
}
  • If working on an Issue, please reference the issue in your commits.
  • If your code have messages that will be sent to the user via MC Chat or Console (and Translations are implemented) please translate those messages in English and Spanish. (If you don't know Spanish type in what you want to say on google translate or vice versa.) IF Translations are not implemented at the time of you submitting a pull request you are not required to translate it to Spanish :)