Commits
md_5 authored fa1a44ab5dd
20 20 | Contributions of all sorts are welcome. To manage community contributions, we use the pull request functionality of Stash. In to gain access to Stash and create a pull request, you will first need to perform the following steps: |
21 21 | |
22 22 | * Create an account on [JIRA](http://hub.spigotmc.org/jira/). |
23 23 | * Fill in the [SpigotMC CLA](http://www.spigotmc.org/go/cla) and wait up to 24 hours for your Stash account to be activated. Please ensure that your username and email addresses match. |
24 24 | * Log into Stash using your JIRA credentials. |
25 25 | |
26 26 | Once you have performed these steps you can create a fork, push your code changes, and then submit it for review. |
27 27 | |
28 28 | If you submit a PR involving both Bukkit and CraftBukkit, it's appreciated if each PR links the other. Additionally, every reference to an obfuscated field/method in NMS should be marked with `// PAIL: Rename` and optionally a suggested name, to make mapping creation easier. E.g.: |
29 29 | ``` |
30 - | entity.k.get(i).f(); // PAIL Rename pathfinders, navigateToHome |
30 + | entity.k.get(i).f(); // PAIL pathfinders, navigateToHome |
31 31 | ``` |
32 32 | Also, make sure to include `// Craftbukkit` comments to indicate modified NMS sources. |