├── .github └── ISSUE_TEMPLATE │ └── bug_report.md └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | 12 | 13 | **Character name** 14 | 15 | 16 | **To Reproduce** 17 | 18 | 1. Cast X on target affected by ... 19 | 2. 20 | 3. 21 | 22 | 23 | Item: https://wowhead.com?item= 24 | Quest: https://wowhead.com?quest= 25 | Spell: https://wowhead.com?spell= 26 | 27 | **Expected behavior** 28 | 29 | 30 | **Screenshots/videos** 31 | 32 | 33 | **Additional context** 34 | 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Hello! 2 | 3 | Here are some examples of good issues: 4 | - [#130](https://github.com/SunstriderEmu/BugTracker/issues/334) 5 | - [#132](https://github.com/SunstriderEmu/BugTracker/issues/336) 6 | --------------------------------------------------------------------------------