Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jameswolff96 committed Feb 27, 2024
2 parents b80698c + c688bd6 commit 950c4ec
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 7 deletions.
13 changes: 13 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
"ghcr.io/devcontainers/features/java:1": {
"version": "17"
}
},
"customizations": {
"vscode": {
"extensions": ["vscjava.vscode-java-pack", "vscjava.vscode-gradle", "github.copilot"]
}
}
}
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: triage
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots/Logs**
If applicable, add screenshots or logs to help explain your problem. Logs can either be a link to a [pastebin](https://pastebin.com/) or a [gist](https://gist.github.com/) or pasted here in
```
backticks
```

**Desktop (please complete the following information):**
- Minecraft Version [e.g. 1.20.4]
- Modloader Version [e.g. NeoForge-20.4.172]
- NotTheGrass Version [e.g. 1.20.4-0.1.1]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
fetch-tags: true

- name: Setup JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

- name: Build with Gradle
uses: gradle/gradle-build-action@v2
uses: gradle/actions/setup-gradle@v3
with:
arguments: build
arguments: build
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## 0.1.1
* Fix Issue where you are unable to break blocks even if only Item Entities exist inside of them

## 0.1.0
* Initial Release
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ Do you ever swing at a baby zombie only to hit the flower it is standing in? Try
* By default you are able to swing through all blocks that are [`minecraft:sword_efficient`](https://frontiernav.net/explore/minecraft/visualisations/tables/entities/sword-efficient) except for [`minecraft:carved_pumpkin`](https://frontiernav.net/explore/minecraft/visualisations/tables/entities/carved-pumpkin) these settings can be adjusted in the NotTheGrass-common.toml
* By default attacking the mob will cancel the break action (for example if you attack a mob that is in tall grass the tall grass will not break), however this can also be changed in the NotTheGrass-common.toml

## Requirements
* Minecraft 1.20.4
* Neoforge 20.4.80-beta+

## License
This mod is licensed under the [MIT License](https://github.com/jwolff52/NotTheGrass/blob/main/LICENSE). Because of this you have permission to add it to any public or private mod pack.
The source code is publicly available on [GitHub](https://github.com/jwolff52/NotTheGrass), if you have any issues please report them there!

0 comments on commit 950c4ec

Please sign in to comment.