Skip to content

Commit

Permalink
release: 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vectrixdevelops committed Apr 13, 2022
1 parent 48b0abe commit f52e3a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ plugins {
}

group = "space.vectrix.ignite"
version = "0.8.0-SNAPSHOT"
version = "0.8.0"
description = "A Mixin and Access Widener mod loader for Spigot/Paper."
9 changes: 4 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ Start your server with the following command depending on the server software yo
- Paper (1.18+): `java -Dignite.service=paper -jar ignite-launcher.jar` (with Minecraft Server jar named `paper.jar`)
- Spigot (1.18+): `java -Dignite.service=spigot -jar ignite-launcher.jar` (with Minecraft Server jar named `spigot.jar`)
- Legacy Paper: `java -javaagent:./ignite-launcher.jar -Dignite.service=legacy_paper -jar ignite-launcher.jar` (with Minecraft Server jar named `paper.jar`)
- Other: `java -javaagent:./ignite-launcher.jar -jar ignite-launcher.jar` (with Minecraft Server jar named `server.jar`)

The mods can then be placed into the `mods` directory that will be created, along with any mod configuration in `configs`.
**Note:** Most other server jars are supported, however you may be required to add additional startup flags in order for it to work, which you can find in the Advanced Section below. It is recommended if you're not sure to [ask for help](https://discord.gg/rYpaxPFQrj).

**Note:** Various properties can be applied to the launch command to support a custom server fork, or environment. Check the advanced usage below.
The mods can then be placed into the `mods` directory that will be created, along with any mod configuration in `configs`.

## Creating a Mod

Expand All @@ -39,7 +38,7 @@ To depend on the Ignite API in order to create your mod, you will need to add th
<dependency>
<groupId>space.vectrix.ignite</groupId>
<artifactId>ignite-api</artifactId>
<version>0.7.4</version>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>org.spongepowered</groupId>
Expand All @@ -59,7 +58,7 @@ repositories {
}
dependencies {
compile "space.vectrix.ignite:ignite-api:0.7.4"
compile "space.vectrix.ignite:ignite-api:0.8.0"
compile "org.spongepowered:mixin:0.8.5"
}
```
Expand Down

0 comments on commit f52e3a3

Please sign in to comment.