bugreport.yaml
1 name: Bug Report 2 description: Report a bug or unexpected behavior 3 title: "[Bug] " 4 labels: 5 - bug 6 assignees: 7 - cliftontoaster-reid 8 body: 9 - type: markdown 10 attributes: 11 value: | 12 Thank you for taking the time to report this bug! We appreciate your help in improving our product. 13 14 Please confirm that to your knowledge, this bug has not already been reported by someone else. If it has, please add your information to that issue instead of creating a new one. 15 - type: checkboxes 16 id: checkboxes 17 attributes: 18 label: Please confirm the following 19 description: Please check all that apply 20 options: 21 - label: I have searched for similar bug reports 22 required: true 23 - label: I have checked the existing issues 24 required: true 25 - label: I have checked the closed issues 26 required: true 27 - label: I have tried to reproduce the bug more than once 28 required: true 29 - type: dropdown 30 id: type 31 attributes: 32 label: Bug Type 33 description: What type of bug is this? 34 options: 35 - Game Breaking 36 - Visual/UI Issue 37 - Performance Issue 38 - Gameplay Mechanics 39 - Network/Connectivity 40 - Other 41 validations: 42 required: true 43 - type: textarea 44 id: description 45 attributes: 46 label: Bug Description 47 description: Please provide a clear and concise description of the bug. 48 placeholder: When I try to place a bet, the game crashes... 49 validations: 50 required: true 51 - type: textarea 52 id: reproduction 53 attributes: 54 label: Steps to Reproduce 55 description: Please provide detailed steps to reproduce the behavior. 56 placeholder: | 57 1. Go to '...' 58 2. Click on '....' 59 3. Scroll down to '....' 60 4. See error 61 validations: 62 required: true 63 - type: textarea 64 id: expected 65 attributes: 66 label: Expected Behavior 67 description: What did you expect to happen? 68 placeholder: I expected the bet to be placed successfully 69 validations: 70 required: true 71 - type: textarea 72 id: actual 73 attributes: 74 label: Actual Behavior 75 description: What actually happened? 76 placeholder: The game freezes and displays an error message 77 validations: 78 required: true 79 - type: textarea 80 id: environment 81 attributes: 82 label: Environment 83 description: Please provide information about your environment 84 placeholder: | 85 - Minecraft Version: [e.g. 1.21.1] 86 - Loader: [e.g. Forge, Fabric] 87 - CC Tweaked Version: [e.g. 1.115.1] 88 validations: 89 required: false 90 - type: textarea 91 id: additional 92 attributes: 93 label: Additional Information 94 description: Add any other context, screenshots, or error logs about the problem here. 95 placeholder: You can drag and drop images or files here 96 validations: 97 required: false 98 - type: textarea 99 id: workaround 100 attributes: 101 label: Possible Workaround 102 description: If you've found a way to work around this issue, please describe it here. 103 placeholder: I was able to avoid this bug by... 104 validations: 105 required: false