Skip to content

Commit

Permalink
Merge branch 'QuiltMC:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
c-leri authored Jan 29, 2024
2 parents 12b570a + 2f92b82 commit 7fc76b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions wiki/introduction/setting-up/en.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ You'll need a couple of things before you can get started.
Temurin Adoptium JDKs are easily available and recommended.
You can download them here: <https://adoptium.net/releases.html>
- Any Java IDE, like [IntelliJ Idea](https://www.jetbrains.com/idea/) or [Eclipse](https://www.eclipse.org/ide/).
[Visual Studio Code](https://www.eclipse.org/ide/) can work, but it takes extra work to get set up.
[Visual Studio Code](https://code.visualstudio.com/) can work, but it takes extra work to get set up.
- We recommend using IntelliJ IDEA as it has the most integrations and is the easiest to use.

Next, you need to decide on whether you want to [download the template mod zip](#template-mod-download-zip-file) or [use the GitHub template](#template-mod-download-github-template). If you don't know how to use git, use the first method. However, it is recommended for you to have at least a GitHub account to get started and familiarize yourself with git quickly.
Expand Down Expand Up @@ -53,7 +53,7 @@ that is highly recommended. You can get it here:

## An Overview Over IDEA

After you opened the project, you should see a window looking roughly like this:
After you open the project, you should see a window looking roughly like this:

TODO: Embed screenshot

Expand All @@ -76,8 +76,8 @@ Now that you have decided on these things, you can update your mod's metadata:

First, update the `gradle.properties` file directly in your project folder to use your Maven group and mod ID.

Change the line beginning with `maven_group =` to use your mod maven group instead of `com.example`
Set `archives_base_name` to your mod's ID similarly and ignore all other properties for now. Here is an example how the result might look:
Change the line beginning with `maven_group =` to use your mod maven group instead of `com.example`.
Set `archives_base_name` to your mod's ID similarly and ignore all other properties for now. Note that since maven [uses hyphens to separate words](https://maven.apache.org/maven-conventions.html), you should change the underscores in your mod ID to hyphens accordingly. Here is an example of how the result might look:

```gradle
# Gradle Properties
Expand Down
2 changes: 1 addition & 1 deletion wiki/items/food/en.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This tutorial will assume that you already understand [Creating your First Item](first-item)

Adding a `FoodComponent` to an item's settings makes that item food. A `FoodComponent` can be created using a `FoodComponent.Bulder`. Try reading the inline documentation (Javadocs) of the builder to understand what's going on here, or continue reading for an explanation:
Adding a `FoodComponent` to an item's settings makes that item food. A `FoodComponent` can be created using a `FoodComponent.Builder`. Try reading the inline documentation (Javadocs) of the builder to understand what's going on here, or continue reading for an explanation:

```java
public static final Item EXAMPLE_FOOD = new Item(new QuiltItemSettings().food(
Expand Down

0 comments on commit 7fc76b1

Please sign in to comment.